I have a domain for example
http://example.com
and another domain
http://reallylargerdomain name.com
I want if sombody access http://example.com/projects then server should proxy data from other url. For this i created following .htaccess file
Rewrite on
RewriteRule ^projects/$ http://reallylargedomainname.com [P]
this is not working but when i change it to following it works
Rewrite on
RewriteRule ^projects/$ http://reallylargedomainname.com [R=301,L]
any idea what's going wrong?