Skip to content

Instantly share code, notes, and snippets.

@amolkhanorkar
Last active August 29, 2015 13:57
Show Gist options
  • Save amolkhanorkar/9501630 to your computer and use it in GitHub Desktop.
Save amolkhanorkar/9501630 to your computer and use it in GitHub Desktop.
Redirect Rule in Apache2
<VirtualHost *:80>
.
.
.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?example\.com [NC]
RewriteRule ^(.*)$ http://www.example.com$1 [R=301,NC,L]
.
.
.
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment