0

我希望 top 能够键入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>

谢谢!

4

1 回答 1

1

它应该是这样的:

Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteRule ^new/?$    /index.php?view=new [L,NC]
于 2013-04-16T00:02:00.177 回答