0

我在 Yii 有一个网站,可以说 www.abc.com 现在问题是雅虎只想在根级别验证这个网站,我必须创建一个这样的网址

www.abc.com/agg344zdtyttz2356-yahoo-1.html 现在我该怎么做,请帮助我。我尝试放置一个 agg344zdtyttz2356-yahoo-1.html 页面,但它显示此网址不存在。

4

1 回答 1

0

app.yaml处理程序部分下的文件中,您应该具有以下内容:

handlers:
# yahoo verification
- url: /(agg344zdtyttz2356-yahoo-1\.html)
  static_files: yahoo/\1
  upload: yahoo/(agg344zdtyttz2356-yahoo-1\.html)

然后将您的文件放到服务器上agg344zdtyttz2356-yahoo-1.html的目录中。yahoo

于 2013-10-10T17:34:04.247 回答