2013-04-15 45 views
0

我想頂部能夠輸入http://website.com/new這將重寫到http://website.com/index.php?view=new,但我只想要new目錄被「重寫」。Mod_Rewrite只有一個文件夾

我已經試過這一點,但它似乎沒有工作...

<IfModule mod_rewrite.c> 
    RewriteEngine On 
    RewriteBase/
    RewriteRule ^new/ /index.php?view=new [L] 
</IfModule> 

謝謝!

+0

你爲什麼要在規則中使用'top',是不是'new'要映射的人嗎? –

回答

1

它應該是這樣的:

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