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