使用.htacces文件隐藏页面扩展名

时间:2016-06-30 20:12:26

标签: php .htaccess url-rewriting

我想知道如何从

转换网址



www.mydomain.com/product.php?product-full-name&product_id=123






www.mydomain.com/product/product-full-name/123




我知道这可以通过htaccess中的URL重写来实现。如果有人向我展示了正确而明确的方法,那就太好了。谢谢。

1 个答案:

答案 0 :(得分:0)

试试这个:

<强>已更新

RewriteEngine on
RewriteRule ^product/(.*)/([0-9]+) product.php?$1&product_id=$2 [L]

如果你想要www.mydomain.com/product.php?pname=product-full-name&product_id=123 然后,

RewriteRule ^product/(.*)/([0-9]+) product.php?pname=$1&product_id=$2 [L]