LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   how to url mask (frames and Apache) (https://www.linuxquestions.org/questions/linux-software-2/how-to-url-mask-frames-and-apache-826852/)

brgsousa 08-17-2010 04:03 PM

how to url mask (frames and Apache)
 
Hi everyone,
I want to configure a URL Mask, and I'm wondering if there is a way to do it with Apache.

the URL www.something.com should be locked in user's browser and redirect requests to www.somethingelse.com/other.

How can do that?
Is the only way is to do it with frames?

regards

dreamgear 08-17-2010 04:42 PM

http://webnv.net/articles/url-masking-with-mod-rewrite

bathory 08-17-2010 05:29 PM

Hi,

You can setup apache running at www.something.com as a reverse proxy for www.somethingelse.com/other:
Code:

ProxyRequests Off

ProxyPass / http://www.somethingelse.com/other/
ProxyPassReverse /crowd http://www.somethingelse.com/other/

Regards


All times are GMT -5. The time now is 09:09 PM.