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