0

我用过这段代码

Options +FollowSymLinks
RewriteEngine on

# redirect for http /buy page
RewriteCond %{SERVER_PORT} =80
RewriteRule ^buy/?$ https://mysite.com/buy [R=301,QSA,L,NE]

# redirect for https non /buy pages
RewriteCond %{SERVER_PORT} =443
RewriteCond %{REQUEST_URI} !^/buy [NC]
RewriteRule ^/?(.*)$ http://mysite.com/$1 [R=301,QSA,L,NE]

这适用于 https 重定向,但我也想从我的 URL 中删除 index.php。这是代码:

RewriteCond %{REQUEST_URI} ^/system.*
RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?/$1 [L]

我怎样才能加入这两个代码。请帮忙。

4

1 回答 1

2

你可以在代码中做到这一点。

创建一个辅助函数;就像是

if ( ! function_exists('force_ssl')) {
    function force_ssl() {
        $CI =& get_instance();
        $CI->config->config['base_url'] = str_replace('http://', 'https://', $CI->config->config['base_url']);
        if ($_SERVER['SERVER_PORT'] != 443) {
            redirect($CI->uri->uri_string());
        }
    }
} 

然后只需在您想要的控制器的构造中调用此函数。

例如

public function __construct() {
        parent::__construct();
        force_ssl();
}
于 2013-02-20T10:28:00.520 回答