Hey all,
I have a strange issue.
if I type.. mysiteurl.com/<whatever> it loads the 404 error page that I setup
however
if i type
mysiteurl.com/<existing-template group page>/<whatever>
Loads
mysiteurl.com/<existing-template group page>/ which shouldn’t since that page doesn’t exist.
is it something to do with my ht access file??
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# Removes index.php from ExpressionEngine URLs
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteCond %{REQUEST_URI} !/system/.* [NC]
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,NE,L]
# Directs all EE web requests through the site index file
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
</IfModule>