1

安全な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に全く精通していません、ありがとう!

4

2 に答える 2

2

途中でクエリを失っています:

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://secure.photofileltd.co.uk/new_site/$1 [L]
于 2012-04-19T19:07:53.457 に答える
1

試す

RewriteRule ^ https://secure.photofileltd.co.uk/new_site%{REQUEST_URI} [R=301,L]

于 2012-04-19T19:01:49.000 に答える