URL重写不更改URL

时间:2013-10-22 04:50:35

标签: php .htaccess mod-rewrite

我想在我的网站上使用友好的网址。

基本上,我希望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/。

1 个答案:

答案 0 :(得分:0)

好像您的查询字符串缺少问号。 试试这个 RewriteEngine on RewriteRule ^view/([^/\.]+)/?$ /?view=$1 [L]