私は検索しましたが、多くのスレッドが近くにあることがわかりましたが、探しているものはまったくありませんでした...
私のサイト、たとえば 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 を強制します。
さらに、ショッピング カート ソフトウェアには、以下に示すように、機能と SEO のための追加の htaccess ステートメントがあります。
私の現在のルート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]