Hi, I'm trying to point a domain name to a single page, and keep the domain the same (no redirect).
So if a user types: www.domain1.com.au --> original site is shown
If a user types: www.domain2.com.au --> they are shown www.domain1.com.au/second.php, but the URL still says www.domain2.com.au.
Can this be done using .htaccess?
Snippet of current .htaccess file is:
RewriteCond %{HTTP_HOST} www\.domain2\.com\.au [NC]
RewriteRule (.*) /two [L]
RewriteCond $1 ^(one|two|three|four) [NC]
RewriteRule ^(.*)$ /index.php/$1 [L]
So basically the www.domain2.com.au needs to display the www.domain1.com.au/two page, which really is www.domain1.com.au/index.php/two