重新路由到 https 的 .htaccess 问题
.htaccess issue with rerouting to https
我的 .htaccess 中有这个
Options +FollowSymlinks
RewriteEngine On
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_= [L,QSA]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R,L=301]
RewriteCond %{HTTP_HOST} ^www\.clipboards\.com [NC]
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R,L=301]
除了一个例外,这些条件都正常。
如果我来自 http(非 ssl),它将在发送到 https 之前将 index.php?route 添加到我的 url。如果我直接来自 https,则情况并非如此,在这种情况下它工作正常。有人可以帮我弄这个吗。谢谢
您应该将重定向放在顶部,您可以组合底部的 2 个规则。另请注意,您的语法无效 [R,L=301]
,应该是 [R=301,L]
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [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_= [L,QSA]
我的 .htaccess 中有这个
Options +FollowSymlinks
RewriteEngine On
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_= [L,QSA]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R,L=301]
RewriteCond %{HTTP_HOST} ^www\.clipboards\.com [NC]
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R,L=301]
除了一个例外,这些条件都正常。 如果我来自 http(非 ssl),它将在发送到 https 之前将 index.php?route 添加到我的 url。如果我直接来自 https,则情况并非如此,在这种情况下它工作正常。有人可以帮我弄这个吗。谢谢
您应该将重定向放在顶部,您可以组合底部的 2 个规则。另请注意,您的语法无效 [R,L=301]
,应该是 [R=301,L]
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [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_= [L,QSA]