Hi
I have two websites hosted on the same server website1.com and website2.com. Now, what i want is that all the users coming to website2.com/old should see what is on website1.com.
I don't want a browser redirect, I want them to see website2.com/old in the url and still see what's there on the website1.com.
website1.com is on /home/website1
website2.com is on /home/website2
To do this, I added an alias/virtual dir in httpd.conf and it's working. Now, I want the requests from website2.com/old/data to go to website1.com/data. And, I am not able to do that. My .htaccess on /home/website1 looks like this..
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
Now, when I go to website2.com/old, it's working fine. but, when i go to website2.com/old/data, it's showing me the content of /home/website2/index.php ..
Please help. Thanks.