Difference between revisions of "Redirecting site using apache configuration"

From Notes_Wiki
m
m
Line 1: Line 1:
<yambe:breadcrumb self="Redirecting sites">Apache web server configuration</yambe:breadcrumb>
=Redirecting site using apache configuration=
=Redirecting site using apache configuration=


Line 16: Line 17:
RewriteRule /.* http://www.new-domain.com/ [R]
RewriteRule /.* http://www.new-domain.com/ [R]
</pre>
</pre>
Back to [[Apache web server configuration]]

Revision as of 08:17, 2 December 2012

<yambe:breadcrumb self="Redirecting sites">Apache web server configuration</yambe:breadcrumb>

Redirecting site using apache configuration

There are many ways of reidrecting websites using apache. Most of them are discussed at http://www.yolinux.com/TUTORIALS/ApacheRedirect.html The two important ways of redirecting websites among the ones mentioned at given URL are

Using mod_alias

Redirect permanent / http://www.new-domain.com/


Using mod_rewrite

RewriteEngine On
RewriteRule /.* http://www.new-domain.com/ [R]