Skip to content

Instantly share code, notes, and snippets.

@mhcifci
Last active December 13, 2018 23:59
Show Gist options
  • Save mhcifci/9eedcb9653d01c91bfd2aea105d74dc0 to your computer and use it in GitHub Desktop.
Save mhcifci/9eedcb9653d01c91bfd2aea105d74dc0 to your computer and use it in GitHub Desktop.
codeigniter-htaccess-file
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