我继承了对Opencart 1.5网站的支持,该网站需要启用SSL。
我在/和admin /中编辑了config.php文件,并在URL中添加了https://在浏览器中工作,并且使用https生成链接
但是,无论我尝试htaccess重定向的方法,都会导致网站无法加载。
以下是在htaccess文件中,我怀疑这个问题与 route 的最后一行有关,我以前没见过。
RewriteBase /
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteRule ^download/(.*) /index.php?route=error/not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
有关如何将https添加到此RewriteRule的任何建议吗?
由于