mod_rewrite failure
I'll preface this by saying I don't know very much about rewrite and in the past, I've simply "made it work".
Here is the code I am using and trying to make work:
RewriteRule ^messagecenter/read/([^/\.]+)/?$ dispatcher.php?category=messagecenter&module=read&action=index&messageid=$1 [L]
When using the direct url dispatcher.php?category=messagecenter&module=read&action=index&messageid=anynumber
it pulls up the page successfully, but when trying to access it via messagecenter/read/开发者_高级运维anynumber/
it gives me a 404. I have similar rules in place that do work, but this one does not.
Any suggestions?
精彩评论