2
私のlaravel 5アプリでリダイレクトに問題があります。 SSLで動作するように.htaccess
を設定しています。うまく動作しています。私が入力したときに問題がある:Laravel SSL .htaccess index.phpへのリダイレクト
example.com/page
からpage
ルートを示すが、私は良いなどの作業https://example.com/page
ルートなどのブラウザに完全なアドレスを入力すると、ブラウザhttps://example.com/index.php
にリダイレクトする必要があります。ブラウザで私は私のpage
ルート(ブレード、itp)を参照してください。 どうしたのですか?
マイ.htaacess
ファイル
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
order deny,allow
deny from all
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule^index.php [L]
# Handle Authorization Header
RewriteCond %{HTTPS} !=on
RewriteRule^https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>