Created
May 28, 2012 06:23
-
-
Save Barneybook/2817677 to your computer and use it in GitHub Desktop.
.htaccess setting
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
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteCond $1 !^(index\.php|index\.html|images|external|image|ui|themes|css|js|robots\.txt) | |
RewriteRule ^(.*)$ /admin/index.php/$1 [L] | |
</IfModule> | |
<IfModule !mod_rewrite.c> | |
ErrorDocument 404 /index.php | |
</IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
RewriteEngine On
RewriteCond $1 !^(index.php|image|css|js|phpMyAdmin-3.5.2.2-all-languages|upload|robots.txt)
RewriteRule ^(.*)$ index.php/$1 [L]