Masri Sabarani
Masri Sabarani

Reputation: 11

How to redirect a second domain to first domain with specific path and variable

Please help, I need my second domain simplify URL on first domain like this :

http://second.domain/"username_variable" 

showing

http://first.domain/jobseeker/site/cv/username/"username_variable"

The second domain is an add-on domain to the first domain.

Can I do that with htaccess?

Upvotes: 1

Views: 50

Answers (1)

Jon Lin
Jon Lin

Reputation: 143906

In the htaccess file in your second domain's document root:

RewriteEngine On
RewriteCond %{HTTP_HOST} second.domain [NC]
RewriteRule ^(.*)$  http://first.domain/jobseeker/site/cv/username/$1 [L,R=301]

Upvotes: 1

Related Questions