Skip to content

Instantly share code, notes, and snippets.

@minimaldesign
Created October 7, 2011 22:11
Show Gist options
  • Save minimaldesign/1271461 to your computer and use it in GitHub Desktop.
Save minimaldesign/1271461 to your computer and use it in GitHub Desktop.
htaccess for Expression Engine on goddady
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment