私は joomla を使用しており、htaccess に適切なリダイレクトを設定する必要があります。
これをすべてリダイレクトする必要があります:
mysite.com to www.mysite.com
mysite.com/index.php to www.mysite.com
www.mysite.com/index.php
www.mysite.com/ to www.mysite.com
www.mysite.com/? to www.mysite.com
www.mysite.com/?tp=1 to www.mysite.com
www.mysite.com/?t to www.mysite.com
www.mysite.com/?tp or anything else after ? to www.mysite.com
私のhtaccessにはこれしかありません:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mysite.com$
RewriteRule ^(.*) http://www.mysite.com/$1 [QSA,L,R=301]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
RewriteRule ^index\.php$ http://www.mysite.com/ [R=301,L]