我正在使用它强制我的付款页面使用HTTPS
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} (signup/|payment)
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
但是图像和CSS使用在Codeigniter上设置的基本URL在完整的URL上。
我如何仅在我的付款页面上强制使用这些网址?
答案 0 :(得分:1)
在
中更改config.php中的base_url$config['base_url'] = (isset($_SERVER['HTTPS']) ? "https://" : "http://") . $_SERVER['HTTP_HOST'] . '/';
这可以解决您的问题。