Problem statement:
How to redirect example.com
to example.com/mypath/mypage
from vhost file
Configurations done:
- Added below entries in vhost SSL and on SSL both & restarted httpd
RewriteEngine On RewriteCond %{HTTP_HOST} !^www.example.com [NC] RewriteRule ^(.*)$ https://www.example.com/mypath/mypage [L,R=301]
Issue:
If user type example.com
it should go to https://www.example.com/mypath/mypage
, it's not happening