Last active
December 13, 2018 23:59
-
-
Save mhcifci/9eedcb9653d01c91bfd2aea105d74dc0 to your computer and use it in GitHub Desktop.
codeigniter-htaccess-file
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
RewriteEngine On | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule (.*) index.php/$1 | |
# Another rule {Delete inside of (application/config/config.php) row $config['index_page'] = 'index.php'; replace $config['index_page'] = '';} | |
RewriteEngine On | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule ^(.*)$ index.php?$1 [L] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment