LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Redirect Method in Apache (https://www.linuxquestions.org/questions/linux-newbie-8/redirect-method-in-apache-802533/)

saran_redhat 04-17-2010 05:55 AM

Redirect Method in Apache
 
Hai friends


How to redirect one website to another website in apache.
for example
when i type www.example.com in my browser then it redirect to
www.example.com/beta. so how i do in apache , please advise me.

i am using centos 5.\

Thanks.

troop 04-17-2010 06:16 AM

.htaccess (or httpd.conf <Directory ..></Directory>)
Code:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.example.com$
RewriteRule ^(.*)$ http://www.example.com/beta/$1 [R=301,L]

for / only:
Code:

RewriteEngine On
RewriteRule  ^/$ http://www.example.com/beta/ [P]

http://httpd.apache.org/docs/2.0/misc/rewriteguide.html


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