The title pretty much says it all. I’ve got tags with single-quotes in them, along the lines of Pipe’s Dreams, and when I try to view the url of that tag (www.example.com/tags/tag/Pipe’s+Dream), I get a “Disallowed Key Characters” error. I suspect this may be a collision with the URL rewriting I am having the .htaccess file doing (removing the index.php via the dynamic/automatic method - code below), but I don’t know for sure.
.htaccess:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
