
Originally Posted by
lhungil
Your .htaccess file is not sending URIs including alphanumbericals, a dash "-", and end with ".html" to index.php. You need to update your .htaccess file.
I tested adding the same category URI (/medieval-clothing.html), and had no issue.. (I of course did not tick the auto generate checkbox) I used the same suggested rule that Conor's documents suggest for URI's ending in ".html"..
Code:
# Don't rewrite any URIs ending with a file extension (ending with .[xxxxx])
RewriteCond %{REQUEST_URI} !\.[a-zA-Z]{2,5}$ [OR]
RewriteCond %{REQUEST_URI} \.(html)$ [NC]
Bookmarks