http链接被重定向错误的https

时间:2017-04-05 21:11:06

标签: ssl https

我在我的网站上添加了一个SSL,并通过.htaccess将所有文件重定向到https,因为我附上了代码。
我的问题是,如果有人点击我的反向链接有http Eg。 http://www.example.com/example/example它重定向到https://www.example.com/plus.php,它会将您带到我的主页。没有http和www或非www它重定向很好。我不想将我的网站名称添加为垃圾邮件,但是如果查看问题是有帮助的,那么该网站就是SexiestPicture.com其他所有工作正常,任何帮助都会非常好,谢谢。

My .htaccess is `Allow from all DirectoryIndex plus.php index.php index.htm index.html RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . plus.php [L] RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] RewriteCond %{HTTP_USER_AGENT} libwww-perl.* RewriteRule .* ? [F,L]`

0 个答案:

没有答案