Page is a not externally linkable
g1smd - 11:41 pm on Feb 22, 2010 (gmt 0)
The ¦ needs to change to a | pipe.
You might be better off having no trailing slash on some of your new URLs; so /en/news instead of /en/news/ here.
The rewrite would need to be adjusted to suit: RewriteRule ^([^/]+)/([^/]+)/$ /$1/$2.php [L]
becomes: RewriteRule ^([^/]+)/([^/.]+)$ /$1/$2.php [L]
(two changes)
The reason for that is URLs ending with a slash represent physical folders on the harddrive. Without the trailing slash, you have an 'extensionless' URL, and that is likely to be preferable to both users and searchengines.
The bare /en/ folder URL would likely remain as /en/ as it looks like a folder.