我在 Ubuntu 服务器 12.04 上运行 Nginx 1.1.19 并且在执行 Googlebot 时遇到问题,请参阅 robots.txt 文件。我使用了这篇文章的示例,但没有成功。为了测试该服务,我访问了网站管理员工具,点击“完整性 > 搜索为 Googlebot”...只是收到来自“未找到”、“页面不可用”和“robots.txt 文件不可访问”的消息“……
我还要确认是否应该对 中的文件nginx.conf
或文件“默认”执行配置/etc/nginx/sites-enabled
,因为在以后的版本中,我注意到可能会有所不同。这是我的基本设置。
root /usr/share/nginx/www;
index index.php;
# Reescreve as URLs.
location / {
try_files $uri $uri/ /index.php;
}