-2
如何將網址從product?p=$name
更改爲product/$name
。如何刪除特殊字符是使用php和htaccses的網址
我綁定使用.htaccses
文件,但無法弄清楚。
在PHP中再次
echo"<a href = 'product?p=$name'></a>";
如何將網址從product?p=$name
更改爲product/$name
。如何刪除特殊字符是使用php和htaccses的網址
我綁定使用.htaccses
文件,但無法弄清楚。
在PHP中再次
echo"<a href = 'product?p=$name'></a>";
嘗試.htaccess文件的鏈接。這次輸入如下:
RewriteEngine On
RewriteRule ^product/([^/]*)/$ /product.php?p=$1 [L]
注:我更換了產品?至product.php?,因爲很可能你有PHP文件。
看看我找到了什麼! http://stackoverflow.com/questions/25080835/pretty-urls-with-htaccess – Jer
可能重複[htaccess查詢字符串重寫](http://stackoverflow.com/questions/1231067/htaccess-rewrite-for-query -string) – Pete
[Pretty URLs with .htaccess]可能的重複(http://stackoverflow.com/questions/25080835/pretty-urls-with-htaccess) – Swier