2014-01-29 41 views
0

我創建了一個網站,並使其網址友好,如www.mywebsite.com/home
但實際的主頁是在我的/SomeFolder/index.php這是重寫它的網址爲/ home。
現在我想將/home url設置爲htaccess文件中的默認頁面。但是當我設置這個。如何在.HTACCESS文件中設置其他文件夾的默認主頁?

DirectoryIndex /home 

我得到的500錯誤。一種方法是在index.php中重定向,以便將我重定向到/ home頁面。但我認爲它是一個奇怪的方法。
有沒有其他方法?

感謝

回答

0

嘗試DirectoryIndex home/index.php

0

使用這一塊,希望這將有助於您

Options +FollowSymLinks 

RewriteEngine on 
RewriteRule home(.*)\$ index.php 
0

刪除DirectoryIndex線。

你需要這條規則在您的DocumentRoot/.htaccess

RewriteEngine on 
RewriteRule ^home/?$ /SomeFolder/index.php [L,NC] 
相關問題