-1

我检查了其他 htaccess 问题和答案,但似乎对这种情况没有任何作用。

下面的代码是我当前的 htaccess 文件。我需要保留主页的重定向。我有网站的 SSL 密钥和证书,我只需要将 http 更改为 https。

我确信这并不复杂,这只是我目前的知识。

请帮忙!

RewriteEngine on
RewriteCond $1 !^(index\.php|admin|gadgets|images|editor|user_guide|captcha|system|css|utils|src|themes|tools|xinha|uploads|js|robots\.txt)
RewriteRule ^(.*).html /$1 [L]

RewriteCond %{HTTP_HOST} ^startuptoolshop\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.startuptoolshop\.com$
RewriteRule ^/?$ "http\:\/\/startuptoolshop\.com\/index\.php\/categories" [R=301,L]
4

2 回答 2

0

将此代码放入 .htaccess 文件中:

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
于 2013-10-08T05:33:56.003 回答
0

在下面插入此规则RewriteEngine on

RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
于 2013-10-08T05:29:44.640 回答