目前谷歌将我的网站链接显示为...
example.com/
...但是,我希望它显示为......
example.com
我有以下元数据
<link rel="canonical" href="http://example.com" />
...以下是我的htaccess文件...
IndexIgnore *
ErrorDocument 400 /error
ErrorDocument 401 /error
ErrorDocument 403 /error
ErrorDocument 404 /error
ErrorDocument 500 /error
RewriteEngine on
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php\ HTTP/
RewriteRule ^index\.php$ / [R=301,L]
RewriteRule ^(home|cv|handouts|links|contact|copyright|cv)/?$ /index.php?module=home&action=$1
RewriteRule ^(log(in|out))/?$ /index.php?module=authentication&action=$1
RewriteRule ^photos/?$ /index.php?module=gallery&action=album&album=general
RewriteRule ^gallery/?$ /index.php?module=gallery&action=album&album=general
RewriteRule ^gallery/([^/\.]+)/?$ /index.php?module=gallery&action=album&album=$1
RewriteRule ^gallery/([^/\.]+)/([^/\.]+)/?$ /index.php?module=gallery&action=album&album=$1$&page=$2
RewriteRule ^gallery/([^/\.]+)/([^/\.]+)/([^/\.]+)/?$ /index.php?module=gallery&action=item&album=$1$&page=$2&item=$3
RewriteRule ^release/?$ /index.php?module=release&action=release
RewriteRule ^error/?$ /index.php?module=error&action=error
...并且htaccess文件如上所述,我注意到访问example.com或example.com/index.php会重定向到example.com/,这可能是问题吗?
尽管如此,以及如何让谷歌以example.com身份显示我的链接的任何想法都不是example.com /
提前致谢!
答案 0 :(得分:3)
运行Google Search。 其数据库中的每个单个网站在域名后面都有一个斜杠。它们没有尾部斜杠的唯一时间是在路径组件之后。路径组件尾随斜杠由每个网站的管理员决定。
将来他们可能会像在Chrome中一样隐藏斜线,但目前你无法做到。