I have a script, and it is preventing me from accessing urls such as example.com/hi that are not part of the script.
How can I add an exception so that these urls work? This is my htaccess right now.
Options -MultiViews
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]