実現したいこと
元々XServer上で稼働しているWebシステムがあり、同サーバー上の別のドメイン(新規取得)に環境をコピーしました。
サーバーの構築等はドキュメント等のないところから引き継いだもので私は関与しておりませんので、
必要な設定の確認等がある場合はお教えいただけると幸いです。
発生している問題・分からないこと
パーミッションの設定をコピー元と合わせ、絶対パスになっている箇所とDB関連の記述を新しいドメイン用に修正したはずですが、500エラーでページが開けない状態です。
エラー内容を調べる限りでは.htaccessの問題かと思いましたが、コピー元では動作しており
ディレクトリ構造もファイルの内容も一致しているため必要な修正がわかっていません。
エラーメッセージ
error
1[*****] [core:error] [pid 2367275:tid 2368204] [client *****] AH00124: Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: https://*****/ 2[*****] [core:error] [pid 2367275:tid 2368204] [client *****] AH00124: Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: https://*****/ 3[*****] [core:error] [pid 2922993:tid 2923086] [client *****] AH00124: Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.
該当のソースコード
public_html下の.htaccess
1SetEnvIf Request_URI ".*" Ngx_Cache_NoCacheMode=off 2SetEnvIf Request_URI ".*" Ngx_Cache_AllCacheMode 3 4<IfModule mod_rewrite.c> 5RewriteEngine On 6RewriteRule ^(.*)$ public/$1 [QSA,L] 7</IfModule> 8
Laravel
1<IfModule mod_rewrite.c> 2 <IfModule mod_negotiation.c> 3 Options -MultiViews -Indexes 4 </IfModule> 5 6 RewriteEngine On 7 8 # Handle Authorization Header 9 RewriteCond %{HTTP:Authorization} . 10 RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 11 12 # Redirect Trailing Slashes If Not A Folder... 13 RewriteCond %{REQUEST_FILENAME} !-d 14 RewriteCond %{REQUEST_URI} (.+)/$ 15 RewriteRule ^ %1 [L,R=301] 16 17 # Handle Front Controller... 18 RewriteCond %{REQUEST_FILENAME} !-d 19 RewriteCond %{REQUEST_FILENAME} !-f 20 RewriteRule ^ index.php [L] 21</IfModule> 22 23
試したこと・調べたこと
- teratailやGoogle等で検索した
- ソースコードを自分なりに変更した
- 知人に聞いた
- その他
上記の詳細・結果
RewriteBaseの追加については変化ありませんでした。
補足
特になし