DocumentRoot
私のウェブサーバーには次の構造があります。
folder1
folder2
標準的な方法でそれらすべてにアクセスできます
my.ip.address.here/folder1
my.ip.address.here/folder2
特定のフォルダが 1 つのデフォルト フォルダ、つまり「folder1」に指定されていない Web サイトにリクエストをリダイレクトしたいと考えています。たとえば、ブラウザに入力すると、my.ip.address.here
「my.ip.address.here/folder1」にリダイレクトされます。DocumentRoot
次の内容の .htaccess ファイルがフォルダー内にあります。
RewriteEngine On
RewriteRule ^$ /folder1 [R=301, L]
ブラウザで Web サイトを実行すると、次のエラーが表示されます。
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, webmaster@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
構成のどこが間違っている可能性がありますか? 前もって感謝します!