とhttpsの問題私は私のCodeIgniterのmod_rewriteの設定に問題を抱えている... ここでは私の現在の設定です:のapache - mod_rewriteのCodeIgniterの
RewriteCond %{SERVER_NAME} =example.com
RewriteRule ^.* https://www.%{SERVER_NAME}%{REQUEST_URI} [END,QSA,R=permanent,L]
RewriteCond %{SERVER_NAME} =www.example.com
RewriteRule ^.* https://%{SERVER_NAME}%{REQUEST_URI} [END,QSA,R=permanent,L]
RewriteCond %{SERVER_NAME} =www.example.com
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ https://%{SERVER_NAME}/index.php/$1 [L]
、これは.htaccessファイルではないことに注意してくださいこれは私の仮想ホストファイルにあります。
アクセスexample.comがhttps://www.example.com に書き換えてアクセスwww.example.comはhttps://www.example.com
にリダイレクトしかしhttps://www.example.com/loginへのアクセスは404ページが表示されます...
おかげ