Hello!
I’m running into an issue where EE will throw a 404 when periods are in URI’s and I think I’ve distilled the issue down to the rules in my htaccess file. I know this forum doesn’t officially give support for htaccess configurations but I thought I could get around the problem by removing the “.” in the permitted_uri_chars line in the config.php file.
So, I did that and when I create a new entry to test that by adding periods in the Title field, the URL Title field continues to automatically add the periods.
What am I doing wrong?
Here’s the value in the permitted_uri_chars config: a-z 0-9~%:_\-
Running EE 2.1.3 w/ MSM 2.1.0
And for what it’s worth, here’s the rules in my htaccess file:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteRule ^(.*)$ /index.php?$1 [L]