htaccess https包含images / css的一个页面或网址

时间:2012-08-18 02:12:07

标签: .htaccess codeigniter mod-rewrite

我正在使用它强制我的付款页面使用HTTPS

RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} (signup/|payment) 
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]

但是图像和CSS使用在Codeigniter上设置的基本URL在完整的URL上。

我如何仅在我的付款页面上强制使用这些网址?

1 个答案:

答案 0 :(得分:1)

中更改config.php中的base_url
$config['base_url'] = (isset($_SERVER['HTTPS']) ? "https://" : "http://") . $_SERVER['HTTP_HOST'] . '/';

这可以解决您的问题。