Mod_Rewrite仅适用于一个文件夹

时间:2013-04-15 23:20:09

标签: apache mod-rewrite

我希望顶部能够输入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>

谢谢!

1 个答案:

答案 0 :(得分:1)

应该是这样的:

Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteRule ^new/?$    /index.php?view=new [L,NC]