除了几个页面和脚本之外的所有HTTP的HTTP到HTTP

时间:2012-10-23 05:51:36

标签: .htaccess http redirect ssl https

我试图帮助一位朋友,他的客户在黑客攻击后将她的整个网站扯到了SSL中。它对她的搜索引擎优化造成了严重破坏,导致重复的页面被索引,使旧的链接不再指向正确的URL等的PageRank流失等等。

无论如何,我在another post on here之后模拟了.htaccess似乎差不多适合这个帐单,但我想由专家在这里运行它以确保文件看起来正确。

基本上,除了一些html页面,一些.php页面和一个.cgi脚本之外,网站上的所有页面都需要从HTTPS重定向回HTTP。你能否告诉我,将所有php页面设置为HTTPS,然后在HTTPS和.cgi脚本后面设置一些额外的HTML页面是否容易?我真的很感激。这是我到目前为止所得到的:

IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*

<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit GET POST>
order deny,allow
deny from all
</Limit>
AuthName thedomain.com
AuthUserFile /home/thesitename/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/thesitename/public_html/_vti_pvt/service.grp

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} page1.html
RewriteCond %{REQUEST_URI} page2.html
RewriteCond %{REQUEST_URI} page3.html
RewriteCond %{REQUEST_URI} page4.html
RewriteCond %{SCRIPT_FILENAME} \/page\.php [NC]
RewriteCond %{SCRIPT_FILENAME} \/page\.php [NC]
RewriteCond %{SCRIPT_FILENAME} \/page\.php [NC]
RewriteCond %{SCRIPT_FILENAME} \/page\.php [NC]
RewriteCond %{SCRIPT_FILENAME} \/page\.php [NC]
RewriteCond %{SCRIPT_FILENAME} \/page\.php [NC]
RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301]

RewriteCond %{HTTPS} on
RewriteCond %{REQUEST_URI} !(auth|register|secure)
RewriteCond %{REQUEST_URI} !originalpage.php
RewriteCond %{REQUEST_URI} !cgi-script.cgi
RewriteRule ^(.*)$ http://%{SERVER_NAME}%{REQUEST_URI} [R=301]

1 个答案:

答案 0 :(得分:0)

  

你能否告诉我是否有一个简单的规则来将所有php页面设置为HTTPS,然后在HTTPS和.cgi脚本后面设置一些额外的HTML页面?

如果请求不是 HTTPS

,此规则会将所有php脚本,4个html页面和cgi脚本重定向到HTTPS
RewriteCond %{HTTPS} off
RewriteCond ${REQUEST_URI} \.php$ [OR]
RewriteCond %{REQUEST_URI} /page1.html$ [OR]
RewriteCond %{REQUEST_URI} /page2.html$ [OR]
RewriteCond %{REQUEST_URI} /page3.html$ [OR]
RewriteCond %{REQUEST_URI} /page4.html$ [OR]
RewriteCond %{REQUEST_URI} /cgi-script.cgi$ 
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

这个规则恰恰相反,重定向任何HTTPS,而不是PHP脚本,那4个html页面或cgi脚本到HTTP

RewriteCond %{HTTPS} on
RewriteCond ${REQUEST_URI} !\.php$
RewriteCond %{REQUEST_URI} !/page1.html$
RewriteCond %{REQUEST_URI} !/page2.html$
RewriteCond %{REQUEST_URI} !/page3.html$
RewriteCond %{REQUEST_URI} !/page4.html$
RewriteCond %{REQUEST_URI} !/cgi-script.cgi$ 
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]