2012-06-09 31 views
0

這是我在.htaccess代碼:如何從home.php重定向到家?

Options -Multiviews 
Options +FollowSymlinks 
RewriteEngine on 
RewriteRule ^home$ home.php [L] 

這段代碼的URL www.example.com/home的工作,但它不會從www.example.com/home.php重定向到www .example.com的/家

有了這個代碼,而不是:

Options -Multiviews 
Options +FollowSymlinks 
RewriteEngine on 
RewriteRule ^home$ home.php [R=301,L] 

我得到這個錯誤:

Not Found 

The requested URL /var/chroot/home/content/08/236108/html/home.php was not found on this server. 

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request. 

如何從home.php重定向到主頁並避免錯誤?

回答

1
Options -Multiviews 
Options +FollowSymlinks 

RewriteEngine on 
RewriteBase/

RewriteRule ^home$ home.php [L] 

RewriteCond %{THE_REQUEST} home\.php 
RewriteRule ^home.php$ home [R=301,L]