Hi,
does anybody else such weired urls?
http://www.sub-cultures.de/en/es/es/...20&language=en
(I found this link via baklinkcheck)
There are now two questions.
How can this happen and where is the origin place where the wrong link is shown?
And why does the url work with &language=en when in Vbet options
Translation links type = Create URL's according to SEO link consensus (i.e. '/en/address')
is activated?
Is .htaccess causing the problem?
Code:
Options +FollowSymlinks
RewriteEngine On
#RewriteRule sc-(.*).php$ sc_p.php?term=$1 [L]
ErrorDocument 404 /error.php
# index.php index.php? und /? auf / umleiten
RewriteCond %{THE_REQUEST} \ /\?\ .*$ [or]
RewriteCond %{REQUEST_URI} ^/index\.php$
RewriteCond %{QUERY_STRING} ^$
RewriteRule .* /? [L,R=301]
# index.php?foo=bar auf /foo=bar umleiten
RewriteCond %{REQUEST_URI} ^/index\.php$
RewriteCond %{QUERY_STRING} !^$
#RewriteRule index\.php / [L,R=301,QSA]
# foo.php? auf foo.php umleiten
RewriteCond %{THE_REQUEST} \ /.*\.php\?\ .*$
RewriteRule (.*) /$1? [L,R=301]
#vbseo sitemap
RewriteRule ^((urllist|sitemap).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
#rules for SEO translation links without vbSEO
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]
Some facts:
I use Vbet 2.3.10
Homelanguage is 'DE' additional languages are 'EN', 'ES' and 'FR'
I would be glad, if someone could help me.