lolipopレンタルサーバーでzendframeworkやlaminas、laravelを使うときの.htaccessのリダイレクト設定
zendフレームワークやlaravel、laminasフレームワークなどのphpフレームワークで、起点がindex.phpになるもののlolipopレンタルサーバーのリダイレクト設定です。
lolipopはhttpd.confなどの変更ができないため、.htaccessに記載します。
以下のサンプルは、httpをhttpsに、www無しをwww有りにredirectする設定も上部に記載しています。
拡張子がjs、ico、gif、jpg、png、css、htm、swf、txtなどは、そのままサーバーにリクエストしているのでリダイレクト対象からはずしています。
適宜、ご自分の環境に必要なものに書き換えてください。
#.htaccess
RewriteEngine On
# httpからの通信を、httpsにリダイレクト(www有り無し)
RewriteCond %{HTTPS} off
RewriteRule ^(.*$) https://www.example.comt/$1 [R=301,L]
RewriteBase /
RewriteRule !\.(js|ico|gif|jpg|png|css|htm|swf|txt)$ index.php
lolipopはhttpd.confなどの変更ができないため、.htaccessに記載します。
以下のサンプルは、httpをhttpsに、www無しをwww有りにredirectする設定も上部に記載しています。
拡張子がjs、ico、gif、jpg、png、css、htm、swf、txtなどは、そのままサーバーにリクエストしているのでリダイレクト対象からはずしています。
適宜、ご自分の環境に必要なものに書き換えてください。
#.htaccess
RewriteEngine On
# httpからの通信を、httpsにリダイレクト(www有り無し)
RewriteCond %{HTTPS} off
RewriteRule ^(.*$) https://www.example.comt/$1 [R=301,L]
RewriteBase /
RewriteRule !\.(js|ico|gif|jpg|png|css|htm|swf|txt)$ index.php
関連