【发布时间】:2012-01-20 04:18:09
【问题描述】:
我正在使用 Codeigniter 并关注 these instructions 来强制使用 ssl,但所有请求都被重定向到
http://staging.example.com/index.php/https:/staging.example.com
我的.htaccess 是:
### Canonicalize codeigniter URLs
# Enforce SSL https://www.
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
###
# Removes access to the system folder by users.
# Additionally this will allow you to create a System.php controller,
# previously this would not have been possible.
# 'system' can be replaced if you have renamed your system folder.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php/$1 [L]
# Checks to see if the user is attempting to access a valid file,
# such as an image or css document, if this isn't true it sends the
# request to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
【问题讨论】:
-
很酷的故事!问题是什么? SO != debug-it-for-me.com
标签: php .htaccess codeigniter mod-rewrite