这是我之前问过的问题,建议使用 mod_proxy 的解决方案,但不幸的是,即使这样我也无法正常工作:(
我想从常规链接重定向到 https 子域,例如https://photofileltd.co.uk/index.php?page=services将显示https://secure.photofileltd.co.uk /new_site/index.php?page=services - 但保留 URL!
这是我的 .htaccess 文件,我添加了“P”来加载代理,但我只收到 500 内部服务器错误:
Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /
RewriteCond %{HTTPS} !=on
RewriteRule ^(.*)$ https://secure.photofileltd.co.uk/new_site/$1 [L, P]
任何帮助或建议将不胜感激,谢谢