My mod rewrite rule mysteriously cuts off the periods from my query string.
For example, this is the request url:
http://mysite/tag/2/Search+For+Articles...
this is the query string I want:
tag=2&clear=Search+For+Articles...
but this is what I get
tag=2&clear=Search+For+Articles
Here is my mod_rewrite configuration
Options -Indexes
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^tag/([^/]*)/([^/]*)(/?)$ f.php?tag=$1&clear=$2 [L,QSA]
How can I fix this problem?
Search+For+Articles? I also suggest you enablingRewriteLogand settingRewriteLoglevelto see what the log says. – quanta Aug 21 '11 at 5:00