如何使用.htaccess从301重定向: https://www.example.com/category/products.php?url=[variable]
要: https://www.example.com/category/products/[variable]/
非常感谢任何帮助。
答案 0 :(得分:0)
我在我的问题中犯了错误,因为我对mod_rewrite并不熟悉。我不想301重定向,我只需要生成URL友好页面。
下面是一个丑陋的URL,友好的URL和RewriteRule的示例。我希望它可以帮助有同样问题的人。
丑陋的网址: https://www.example.com/category/index.php?product=fireplace
友情网址: https://www.example.com/category/fireplace
重写规则:
RewriteRule ^category/(.+)$ category/index.php?product=$1 [QSA,L]