我希望顶部能够输入http://website.com/new
,它会重写为http://website.com/index.php?view=new
,但我只希望new
目录被“重写”。
我试过这个,但它似乎不起作用......
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^new/ /index.php?view=new [L]
</IfModule>
谢谢!
答案 0 :(得分:1)
应该是这样的:
Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteRule ^new/?$ /index.php?view=new [L,NC]