Apache URL masking

.htaccessapache-2.4mod-rewrite

I need to access http://www.domain.com/uri-path-to-resource.rsc in the browser, but to display the content from http://shop.domain.com/uri-path-to-resource.rsc.
Unfortunately ProxyPass could not be used in the .htaccess file and I have no idea how to accomplish it.

Any ideas are more than welcome!

Best Answer

Try:

RewriteRule ^uri-path-to-resource.rsc$ /absolutepath/private_html/shop.domain/uri-path-to-resource.rsc [L]

Change the example path to the absolute path for your shop.domain.

Related Topic