我已使用此代码
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]
我如何加入这两个代码。请帮助。
答案 0 :(得分: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());
}
}
}
然后在您想要的控制器的构造中调用此函数。
E.g
public function __construct() {
parent::__construct();
force_ssl();
}