我想在我的网站上使用友好的网址。
基本上,我希望www.example.com/index.php?view=contact显示为www.example.com/view/contact - 联系人更改为其他各个页面。
以下是我为.htaccess文件拼凑的内容:
RewriteEngine on
RewriteRule ^view/([^/\.]+)/?$ /view=$1 [L]
虽然,它不起作用。有什么建议吗?
Mod_rewrite已启用,我可以将其更改为www.example.com/contact/。
答案 0 :(得分:0)
好像您的查询字符串缺少问号。
试试这个
RewriteEngine on
RewriteRule ^view/([^/\.]+)/?$ /?view=$1 [L]