我想在https上创建整个网站,但在http上只有一个网址?

时间:2016-06-28 13:10:12

标签: wordpress apache .htaccess

我在.htaccess文件中使用此代码

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://jobzshopz.com/$1 [R,L]

它将我的所有http网址重定向到https,但现在我想重定向我的帖子,其中http使用https保留所有页面..!

https://jobzshopz.com/find-online-bise-lahore-matric-9th-10th-ssc-result-2016/584 因为我在这篇文章中使用框架而https没有加载框架。因为帧是来自http协议网站..!请帮帮我。

1 个答案:

答案 0 :(得分:1)

排除 /find-online-bise-lahore-matric-9th-10th-ssc-result-2016/584  根据规则,您可以使用以下内容:

RewriteEngine On
RewriteCond %{REQUEST_URI} !^/find-online-bise-lahore-matric-9th-10th-ssc-result-2016/584 [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://jobzshopz.com/$1 [R,L]