我已经搜索过,虽然我发现很多线程都关闭了,但没有一个是我正在寻找的......
在我的网站上,比如说 example.com,我创建了子域 secure.example.com
该子域将具有 SSL。
我想要做的是将请求重定向到https://secure.example.com/path/到 www.example.com/path/,同时保持 url 显示为https://secure.example.com/path/
请注意 subdomain.example.com 的目的是用于 SSL,因此上面的重定向需要与 SSL 一起使用
我想在 htaccess 中使用其他一些重定向:1)将非 www 重定向到 www 忽略子域(因此 secure.example.com 不会变成 www.secure.example.com) 2)将 /index.php 重定向到/ 3) 最后但同样重要的是,在secure.example.com 上强制使用SSL
此外,购物车软件还有额外的 htaccess 功能和 SEO 语句,如下所示。
我当前的根 htaccess:
# Prevent Directoy listing
Options -Indexes
# Prevent Direct Access to files
<FilesMatch "\.(tpl|ini|log)">
Order deny,allow
Deny from all
</FilesMatch>
# Turn Rewrite Engine On
RewriteEngine On
## index.php to root
Options +FollowSymlinks
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
RewriteRule ^index\.php$ http://www.example.com/ [R=301,L]
## non-www to www ignore subdomains
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ http://www.example.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]
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]