-2
URLをproduct?p=$name
からproduct/$name
に変更するにはどうすればよいですか?特殊文字を削除する方法は、phpとhtaccsesのURLです
私は.htaccses
ファイルを使用することに同意しましたが、それを理解できませんでした。
PHP
echo"<a href = 'product?p=$name'></a>";
URLをproduct?p=$name
からproduct/$name
に変更するにはどうすればよいですか?特殊文字を削除する方法は、phpとhtaccsesのURLです
私は.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 rewrite to query string]の重複が可能です。(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