View Single Post
  #2 (permalink)  
Old 01-07-2009, 01:35 PM
swordfish swordfish is offline
Administrator
 
Join Date: Jan 2009
Posts: 41
Exclamation

Quote:
Originally Posted by rootkit View Post
How do I do a 301 redirect my domain i.e. example.com to www.example.com? Also if I want to disable access to the whole website and redirect to an html page? TIA
Assuming you have mod_rewrite enabled on Apache, this should take care of your first question:

Code:
RewriteEngine on

RewriteCond %{HTTP_HOST} ^example.com$
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
Append this below to take all visitors to a maintenance page:

Code:
RewriteRule !^maintenance.html$ /maintenance.html [PT,NS]
Reply With Quote