Created
December 11, 2019 22:15
-
-
Save remoharsono/247bf65c2a728a31cd9b14d0963cf4be to your computer and use it in GitHub Desktop.
Code Igniter .htaccess Rewrite Rule
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 | |
# if the file with the specified name in the browser doesn’t exist, | |
# or the directory in the browser doesn’t exist then procede to the rewrite rule below | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
# this is the last rule | |
RewriteRule ^(.*)$ index.php/$1 [L] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment