У меня есть следующая конфигурация,
<VirtualHost *:80> ServerAdmin webmaster@myserver.com ServerName TestPage.myserver.com ErrorLog /var/log/apache2/TestPage.myserver.com-error_log CustomLog /var/log/apache2/TestPage.myserver.com-access_log combinedXForwardedFor RewriteEngine On RewriteRule ^/$ /login_custom_page.html [R] DocumentRoot "/srv/www/htdocs/mytestcontent/" DirectoryIndex index.htm </VirtualHost>
при тестировании страницы http://TestPage.myserver.com У меня перенаправление в http://TestPage.myserver.com/login_custom_page.html
http://TestPage.myserver.com
http://TestPage.myserver.com/login_custom_page.html
Мне нужно перенаправить эту страницу в https, чтобы при я позвоню по URL http://TestPage.myserver.com Мне нужно это перенаправить в https://TestPage.myserver.com/login_custom_page.html
https://TestPage.myserver.com/login_custom_page.html
Есть предложения по этому поводу?