2015-05-09 125 views
0

我是網絡開發新手。在我的網站我有public_html文件夾,它有應用程序文件夾。我在我的htaccess的文件重寫規則如下:修改.htaccess重寫規則

RewriteEngine on 

RewriteRule ^$ app/webroot/ [L] 

RewriteRule (.*) app/webroot/$1 [L] 

現在我想修改的規則這樣一種方式,如果我創建public_html下比它應該顯示的配置文件夾的index.php的新文件夾的配置文件。基本上,如果我在瀏覽器窗口中鍵入www.example.com/profile,它應該顯示index.php文件的內容。

回答

1

有幾種方法可以做到這一點,但這應該是最簡單的方法。

重寫規則^ [A-Z0-9 _-] + /?$ ./profile/index.php [L,NC]

+0

我需要原來的規則後補充?像這樣RewriteEngine RewriteRule^$ app/webroot/[L] RewriteRule^[a-z0-9 _-] + /?$ ./profile/index.php [L,NC] RewriteRule(。*) app/webroot/$ 1 [L] – kidslaugh