Skip to content

Instantly share code, notes, and snippets.

@Barneybook
Created May 28, 2012 06:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Barneybook/2817677 to your computer and use it in GitHub Desktop.
Save Barneybook/2817677 to your computer and use it in GitHub Desktop.
.htaccess setting
<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>
@Barneybook
Copy link
Author

RewriteEngine On
RewriteCond $1 !^(index.php|image|css|js|phpMyAdmin-3.5.2.2-all-languages|upload|robots.txt)
RewriteRule ^(.*)$ index.php/$1 [L]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment