安全なhttpsフォルダーに新しいバージョンのWebサイトを作成しました。そのフォルダーにリクエストを送信したいので、たとえばhttps://photofileltd.co.uk/index.php?page=servicesはhttpsを表示します。 ://secure.photofileltd.co.uk/new_site/index.php?page = services
私はこれを.htaccessで試しました、それはうまくリダイレクトしますが、URLを変更/マスクしません、Janのおかげで更新されました:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://secure.photofileltd.co.uk/new_site/$1 [L]
どんな助けやアドバイスも大歓迎です-私はhtaccess/mod_rewriteに全く精通していません、ありがとう!