CI in a Linux environment setup |
Try this .htaccess script which is extracted straight from the standard installation and notice the difference in your script:
# Checks to see if the user is attempting to access a valid file, # such as an image or css document, if this isn't true it sends the # request to the front controller, index.php RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] >>> The welcome message I mentioned is from the standard installation which I test to ensure the basics work without errors before adding my own pages: https://ci4-strict.tk/welcome-strict |
Welcome Guest, Not a member yet? Register Sign In |