I use a plugin in vB3.5 called "
Link Anonymizer and Censor" (available here:
https://vborg.vbsupport.ru/showthread.php?t=143615)
This anonymising link to all external urls in posts using a
php script stored in the forum root. (php script available here:
https://vborg.vbsupport.ru/showpost....3&postcount=64)
For me the file is called "noref.php" and is located in "
My_Domain/forums/noref.php"
And when a link is clicked the user get a redirection url like: "
My_Domain/forums/noref.php?url=http://www.google.com"
But if an user use the translation by example the french language he get a link like: "My_Domain/forums
/fr/noref.php?url=http://www.google.com" and the script try to redirect to "
uage=fr&url=http://www.google.com" instead to "http://www.google.com"
and the user get a url error.
Please how can I solve this problem??
I use "vBET 2.3.10" with "vBSEO - Sitemap Generator v2.5" my .htaccess is:
Code:
RewriteEngine On
RewriteRule ^/?(af|sq|ar|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|de|el|iw|hi|hu|is|id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|sr|sk|sl|es|sw|sv|zh-TW|th|tr|uk|vi|sq|ca|et|tl|gl|hi|id|lv|lt|mt|sl|uk|vi|cy|yi)/$ index.php?language=$1 [L,QSA]
RewriteRule ^/?(af|sq|ar|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|de|el|iw|hi|hu|is|id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|sr|sk|sl|es|sw|sv|zh-TW|th|tr|uk|vi|sq|ca|et|tl|gl|hi|id|lv|lt|mt|sl|uk|vi|cy|yi)/(.*)?$ $2?language=$1 [L,QSA]
RewriteRule ^((urllist|sitemap).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
Thanks in advance.