我的文件夹中有 .htaccess,它会将所有网站重定向到 https。我只想将 awesomesites.com 重定向到 https。
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteCond %{HTTP_HOST} ^www\.awesomesites\.com [NC]
RewriteRule ^(.*)$ https://awesomesites.com/$1 [R=301,L]
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。
答案1
您可以向 HTTPS 重定向添加另一个条件,如下所示:
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} awesomesites\.com [NC]
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
这将仅将到 awesomesites.com 域的流量重定向到 HTTPS