Skip to content

Instantly share code, notes, and snippets.

@joergpatz
Last active August 29, 2015 14:02
Show Gist options
  • Save joergpatz/97ae4002a6a4937122bb to your computer and use it in GitHub Desktop.
Save joergpatz/97ae4002a6a4937122bb to your computer and use it in GitHub Desktop.
htaccess and rewrite rules

I can't remember rewrite rules:

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.your-domain\.com [NC]
RewriteRule (.*) http://www.your-domain.com/$1 [L]


RewriteCond %{HTTP_HOST} !^www\.other-domain\.com [NC]
RewriteRule (.*) http://www.other-domain.com/$1 [L]


RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www\.)?addon-domain\.com [NC]
RewriteRule (.*) http://www.main-domain.com/$1 [L]

RewriteRule ^pet-care/?$ pet_care_info_01_02_2008.php [NC,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment