我的站点地图位置位于this link。此站点地图是由插件生成的,不存在于目录中。
如果有人试图访问,我想从其他网站重定向到主页或图片,只有机器人可以访问它。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} !(googlebot|msnbot|baiduspider|slurp|webcrawler) [NC]
RewriteCond %{REQUEST_URI} ^/sitemap.xml [NC]
RewriteRule ^ http://www.example.com/ [R=301,L]
</IfModule>
答案 0 :(得分:1)
在htaccess文件中添加此行
RewriteRule ^sitemap.xml$ index.php [L]