Skip to content

Instantly share code, notes, and snippets.

@tonyjunkes
Created June 25, 2013 23:11
Show Gist options
  • Save tonyjunkes/5863272 to your computer and use it in GitHub Desktop.
Save tonyjunkes/5863272 to your computer and use it in GitHub Desktop.
Apache Mod_Rewrite .htaccess example to rewrite a URL to not include index.cfm
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^.*\.(bmp|css|gif|htc|html?|ico|jpe?g|js|pdf|png|swf|txt|xml)$
RewriteRule ^(.*)$ index.cfm/$1 [NS]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment