Hi Blake, worth a shot, try this. I used to do my redirects like this but don't use Apache anymore but this worked perfect for me. <VirtualHost *:80> ServerName abc.com ServerAlias *.abc.com ServerAdmin me@xxxxxxx RewriteEngine On RewriteCond %{HTTPS} off RewriteCond %{HTTP_HOST} ^(?:www\.)?(.*)$ [NC] RewriteRule (.*) https://def.com/ghi/#about [END,QSA,R=permanent] </VirtualHost> or <VirtualHost *:80> ServerName abc.com ServerAlias *.abc.com ServerAdmin me@xxxxxxx RewriteEngine On RewriteCond %{HTTPS} off RewriteCond %{HTTP_HOST} ^(?:www\.)?(.*)$ [NC] RewriteRule (.*) https://def.com%{REQUEST_URI} [END,QSA,R=permanent] </VirtualHost> Kind Regards Mitchell Krog ************************************************** Visit me at https://mitchellkrog.com ************************************************** From: Blake McBride <blake1024@xxxxxxxxx> Reply: users@xxxxxxxxxxxxxxxx <users@xxxxxxxxxxxxxxxx> Date: 08 July 2017 at 3:35:00 PM To: users@xxxxxxxxxxxxxxxx <users@xxxxxxxxxxxxxxxx> Subject: [users@httpd] Problem with Redirect
|