.
Jul 4, 2014 4:07 am by sportnetwork
Jul 4, 2014 4:07 am by sportnetwork
.
Re: Gtranslate generating multiple URLS scanneds by Google b
Jul 4, 2014 7:55 am by Yana
Jul 4, 2014 7:55 am by Yana
Hi,
If you have installed the language code or language filter plugins, please disable.
Re: Gtranslate generating multiple URLS scanneds by Google b
Jul 4, 2014 9:23 am by sportnetwork
Jul 4, 2014 9:23 am by sportnetwork
.
Re: Gtranslate generating multiple URLS scanneds by Google b
Jul 4, 2014 12:09 pm by Yana
Jul 4, 2014 12:09 pm by Yana
Can you post your website address so I can check it?
Re: Gtranslate generating multiple URLS scanneds by Google b
Jul 7, 2014 2:08 am by sportnetwork
Jul 7, 2014 2:08 am by sportnetwork
.
Re: Gtranslate generating multiple URLS scanneds by Google b
Jul 7, 2014 9:48 am by sportnetwork
Jul 7, 2014 9:48 am by sportnetwork
.
Re: Gtranslate generating multiple URLS scanneds by Google b
Jul 7, 2014 10:50 am by Edvard
Jul 7, 2014 10:50 am by Edvard
Hi,
Can you post the rewrite rules you are using for gtranslate in your .htaccess file? It seems that you have set a wrong rewrite rules.
Thanks!
Re: Gtranslate generating multiple URLS scanneds by Google b
Jul 7, 2014 11:58 am by sportnetwork
Jul 7, 2014 11:58 am by sportnetwork
.
Re: Gtranslate generating multiple URLS scanneds by Google b
Jul 7, 2014 3:51 pm by Edvard
Jul 7, 2014 3:51 pm by Edvard
Hi,
Are you sure that you are not using the GTranslate plugin?
The gtranslate config block should go directly next line to RewriteEngine On line.
Let me know.
Thanks!
Re: Gtranslate generating multiple URLS scanneds by Google b
Jul 8, 2014 3:40 am by sportnetwork
Jul 8, 2014 3:40 am by sportnetwork
.
Re: Gtranslate generating multiple URLS scanneds by Google b
Jul 8, 2014 5:10 pm by Yana
Jul 8, 2014 5:10 pm by Yana
Hi,
It seems the problem is related to the trailing slash. If you click on logo it redirects for example from http://www.domain.com/de/ to http://wwwdomain/de and it generates wrong URLs
Please try to add the following rules in your .htaccess file after RewriteEngine On
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !index.php
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://domain/$1/ [L,R=301]
Re: Gtranslate generating multiple URLS scanneds by Google b
Jul 9, 2014 3:03 am by sportnetwork
Jul 9, 2014 3:03 am by sportnetwork
.
Re: Gtranslate generating multiple URLS scanneds by Google b
Jul 9, 2014 10:12 pm by Yana
Jul 9, 2014 10:12 pm by Yana
Hi,
I have just addes the following rules
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !index.php
RewriteRule ^([a-z]{2}|zh-CN|zh-TW)$ $1/ [R=301,NC,L]
It seems the rules are working properly. Can you please check it?
Re: Gtranslate generating multiple URLS scanneds by Google b
Jul 10, 2014 2:58 am by sportnetwork
Jul 10, 2014 2:58 am by sportnetwork
.
Re: Gtranslate generating multiple URLS scanneds by Google b
Jul 10, 2014 6:11 pm by Edvard
Jul 10, 2014 6:11 pm by Edvard
Good to hear that. Thanks!