On my test board running 3.0.0b2 I have 'Simplify Wiki Links' option enabled as well as 'UTF-8 Support for URLs' option.
When I try using normal ascii characters in URLs everything works fine (which proves it's not issue with .htaccess) but when I try any UTF8 chars in URL page goes into infinite cycle with browser reporting:
Code:
The page isn't redirecting properly
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
Exactly the same setup worked fine with 2.5.7...
Code:
RewriteBase /
RewriteRule ^showwiki.php?title=(.*)$ showwiki/$1 [L,R=301]
RewriteRule ^showwiki/DEFAULT:(.*)$ showwiki/$1 [L,R=301]
RewriteRule ^showwiki/(.*)?$ showwiki_proxy.php [L,QSA]
from the log...
ascii in url - all works ok
[20/Jan/2010:22:35:48 +0000] "GET /showwiki/a HTTP/1.0" 200 57846 "-"
utf8 in url - loops
[20/Jan/2010:22:36:53 +0000] "GET /showwiki/%d0%b0 HTTP/1.0" 301 - "-"
[20/Jan/2010:22:36:53 +0000] "GET /showwiki/%d0%b0 HTTP/1.0" 301 - "-"
[20/Jan/2010:22:36:53 +0000] "GET /showwiki/%d0%b0 HTTP/1.0" 301 - "-"
etc... until ff gives up
out of curiocity i've disabled 'utf8 if url' option and in this case i get:
[20/Jan/2010:22:38:13 +0000] "GET /showwiki/%d0%b0 HTTP/1.0" 301 - "-"
[20/Jan/2010:22:38:13 +0000] "GET /showwiki/Dj HTTP/1.0" 200 57853 "-"
Any ideas?
Denis