English 中文(简体)
• 如何处理SEO友好的ur(hash)特性?
原标题:How to handle #(hash) character in SEO friendly url?

如果只读一页某一部分的话,你如何绕过违约行为? 我面临的问题是,这种独一无二的特性是作为标题的SEO友好之地的一部分,(hash)是内容的一部分(即与C#一样)。 我可以找回整个扼杀,我只拿到第2号之前的特性。

例:

www.domain.com/C#-programming-book

例如,我只获得C部分,而不是编程书。 我目前不使用任何 j,只想为此使用一种购买力平价解决办法。

在任何人建议我使用尿素编码之前,友好气味的标准是,它应当是人能读和易于记住的。 因此,将 has转换为%23 不能通过标准。

它没有办法?

最佳回答

<代码>#是你可以改变的URLs工作定义的一部分。 浏览器在提出请求之前将取消<代码>#和任何案文。 一旦收到答复,将用<代码>#名称查找该元素的网页。

大多数人做什么,将其改为“血压”。 i.e. “碎块”

问题回答

<代码># natures have special effect in URLs have need to be encoded as %<23> 如果它们作为数据出现的话。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...