I have the following testing sites set up with apache and served from the following place /htdocs/www/*
:
https://local.sweetcar.com/www/mycompany/
https://local.sweetcar.com/www/sweetcar/
I would like to configure an apache rewrite to serve the following urls
https://local.mycompany.com/
https://local.sweetcar.com/
So the www/mycompany/ and the www/sweetcar/ is removed from the url while everything else is preserved
This is what I tried with no success:
.htaccess
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
You may use these rules in site root .htaccess:
RewriteEngine On
RewriteBase /
RewriteCond %{ENV:REDIRECT_STATUS} !200
RewriteCond %{HTTP_HOST} ^local\.([^.]+)\. [NC]
RewriteRule !^www/ www/%1%{REQUEST_URI} [L,NC]
RewriteRule ^index\.php$ - [L]