0

これは.htaccessの私のコードです:

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

このコードでは、URL www.example.com/home は機能しますが、www.example.com/home.php から www.example.com/home にリダイレクトされません。

代わりに次のコードを使用します。

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 からホームにリダイレクトしてエラーを回避するにはどうすればよいですか?

4

1 に答える 1

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]
于 2012-06-09T09:27:24.160 に答える