2017-03-02 37 views
-2

如何將網址從product?p=$name更改爲product/$name如何刪除特殊字符是使用php和htaccses的網址

我綁定使用.htaccses文件,但無法弄清楚。

在PHP中再次

echo"<a href = 'product?p=$name'></a>"; 
+2

看看我找到了什麼! http://stackoverflow.com/questions/25080835/pretty-urls-with-htaccess – Jer

+3

可能重複[htaccess查詢字符串重寫](http://stackoverflow.com/questions/1231067/htaccess-rewrite-for-query -string) – Pete

+0

[Pretty URLs with .htaccess]可能的重複(http://stackoverflow.com/questions/25080835/pretty-urls-with-htaccess) – Swier

回答

1

嘗試.htaccess文件的鏈接。這次輸入如下:

RewriteEngine On 
RewriteRule ^product/([^/]*)/$ /product.php?p=$1 [L] 

注:我更換了產品?product.php?,因爲很可能你有PHP文件。