Can i rewrite my URL like this?

Your Main Site’s .htaccess File

(In the following code, example1 is your main site and example2 is your add-on site.)

Code:
Options +FollowSymLinks
RewriteEngine On

Redirect 301 /example2/ http://www.example2.com/
Redirect 301 /example2 http://www.example2.com/

RewriteCond %{HTTP_HOST} ^example1\.com$ [NC]
RewriteRule ^(.*)$ http://www.example1.com/$1 [R=301,L]

Your Add-On Site’s .htaccess File

(In the following code, example1 is your main site and example2 is your add-on site.)

Code:
Options +FollowSymLinks
RewriteEngine On

RewriteCond %{HTTP_HOST} ^example2.example1.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.example2.example1.com$
RewriteRule ^(.*)$ "http\:\/\/www\.example2\.com\/$1" [R=301,L]

RewriteCond %{HTTP_HOST} ^example2\.com$ [NC]
RewriteRule ^(.*)$ http://www.example2.com/$1 [R=301,L]


Just done the same for 2 addon domains.

The code will also make your url "http://www."
 
Back
Top Bottom