Created
September 4, 2010 03:03
-
-
Save aenigme/564862 to your computer and use it in GitHub Desktop.
Kohana v2 .hatccess for Godaddy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Turn on URL rewriting | |
RewriteEngine On | |
# Installation directory | |
RewriteBase / | |
# Protect application and system files from being viewed | |
RewriteRule ^(application|modules|system) - [F,L] | |
# Allow any files or directories that exist to be displayed directly | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
# Rewrite all other URLs to index.php/URL | |
RewriteRule .* index.php?kohana_uri=$0 [PT,L] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment