Skip to content

Instantly share code, notes, and snippets.

@ianshea
Created October 8, 2013 14:54
Show Gist options
  • Save ianshea/6886023 to your computer and use it in GitHub Desktop.
Save ianshea/6886023 to your computer and use it in GitHub Desktop.
GoDaddy CraftCMS .htaccess
AddHandler x-httpd-php5-3 .php
Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteBase /
# Send would-be 404 requests to Craft
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/(favicon\.ico|apple-touch-icon.*\.png)$ [NC]
RewriteRule (.+) index.php?p=$1 [QSA,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment