You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe that I have found a bug.
The "qtranxf_init_language" method is performing a 302 redirect when I select the option: "Hide URL language information for default language.".
However, it would not be correct to add 301 as a parameter in wp_redirect?
Example: wp_redirect($target, 301) - line 81;
Issue by ghost
Wednesday Nov 11, 2015 at 18:09 GMT
Originally opened as qTranslate-Team/qtranslate-x#309
Hi!
I believe that I have found a bug.
The "qtranxf_init_language" method is performing a 302 redirect when I select the option: "Hide URL language information for default language.".
However, it would not be correct to add 301 as a parameter in wp_redirect?
Example: wp_redirect($target, 301) - line 81;
I say this for the sake of SEO.
http://example.com/default_lang/page.php ---> (302) http://example.com/page.php
Correct:
http://example.com/default_lang/page.php ---> (301) http://example.com/page.php
Can you could understand?
The text was updated successfully, but these errors were encountered: