And welcome
So, multibyte characters are really problematic when it comes to URL. The main problem being the browsers, because there's not much we can do about it (servers can be configured upon specific needs).
Some will be able to deal with straight utf-8 chars in urls, others, such as FF will
url_encode() them.
We originally started to
work on this matter with Persian, but it's the same with Hebrew, Cyrillic, Chinese and so on.
The most we can do is to filter these chars and eventually only inject the a-z chars after we filter accents. And this is handled by default only for char-sets supported by htmlentities.
So basically, title injection is only useful if your forum does use some Latin characters on a regular basis, which can be for example the case for a technical support forum, since technical terms can still be using the Latin char set, like CSS, HTML, php, etc ...
Otherwise, the simple mod rewrite is the way to go, since it will do a faster job for the same result : no injection.
AmirAbbas website is a good example of a technical forum taking advantage out of the partial title injection :
http://forum.persia-cms.com/
As you can see a forum named :
- Code: Select all
بخش php و MySQL
will end up with :
- Code: Select all
php-mysql-vf7.html in the url
So to conclude, if your forum could take advantage of some partial injection in url, and since the two char-set you are currently using are not handled by htmlentities, you need to go for utf-8 (it's not so easy with phpBB2).
The easiest way to do so probably is to convert to phpBB3 since utf-8 is the only char-set and the converter will do all the conversion for you.
It's as well the easiest way to install all of our mods at once, since we maintain an
SEO premod for phpBB3.
This would as well allow you to have greater control over your forum URLs (phpBB3 mod rewrite are way more advanced than the phpBB2 ones) and to only deal with a single massive redirect (no need to redirect from your current url to phpBB2's before you redirect again to phpBB3's).
All together this is making phpBB3 a better solution in all case IMO.
Or, you can install the simple mod rewrite, and keep the same url when you eventually convert later.
