前提・実現したいこと
初期、ルート直下にページを公開していました。
後、リニューアルをし、独自ドメインを取得後、ルート下位に/examlple/ディレクトリを作成、
ルートのページを/examlple/以下のページにリダイレクトをかけていました。
現在、独自ドメインを新たに取得し、/newsite/に割当、ページを公開したのですが、
500エラーがでて、表示されません。
サーバー会社に問い合わせたところルートの.htaccessを削除しろとのこと。
それを削除すると、リダイレクト消えてしまうので、/newsite/ディレクトリのみ、ルートの.htaccessを継承したくありません。
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} !(^/bbb/)
RewriteRule ^$ http:www.aaa.com [R=301,L]
を追記しても、全く動じません。
書き方が間違っているようですが、
ご指南いただけますと幸いです。
発生している問題・エラーメッセージ
500エラー
該当のソースコード
AddHandler php5.3-script .htm .html
RewriteEngine on
RewriteCond %{HTTP_HOST} ^root.web.jp
RewriteRule ^(.*) https://example.com/$1 [R=301,L]
Redirect 301 http://root.web.jp/ https://example.com/
Redirect 301 /sp/index.html https://example.com/
Redirect 301 /index01.html https://example.com/index01.php
Redirect 301 /index02.html https://example.com/index02.php
Redirect 301 /index03.html https://example.com/index03.php
Redirect 301 /index04.html https://example.com/index04.php
Redirect 301 http://root.web.jp/blog/ https://example.com/blog/
Redirect 301 /index05.html https://example.com/index05.php
Redirect 301 /index06.html https://example.com/index06.php
Redirect 301 /index07.html https://example.com/index07.php
試したこと
AddHandler php5.3-script .htm .html
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} !(^/bbb/)
RewriteRule ^$ http:www.aaa.com [R=301,L]
RewriteEngine on
RewriteCond %{HTTP_HOST} ^root.web.jp
RewriteRule ^(.*) https://example.com/$1 [R=301,L]
Redirect 301 http://root.web.jp/ https://example.com/
Redirect 301 /sp/index.html https://example.com/
Redirect 301 /index01.html https://example.com/index01.php
Redirect 301 /index02.html https://example.com/index02.php
Redirect 301 /index03.html https://example.com/index03.php
Redirect 301 /index04.html https://example.com/index04.php
Redirect 301 http://root.web.jp/blog/ https://example.com/blog/
Redirect 301 /index05.html https://example.com/index05.php
Redirect 301 /index06.html https://example.com/index06.php
Redirect 301 /index07.html https://example.com/index07.php
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー