我使用网址格式http://*.self/
运行服务器。根据客户端的用户代理字符串,无论路径是什么,我都需要返回相同的内容。例如:
将/path/to/search-bot/index.php
:
<body>
<h1>Thou sahll not!</h1>
</body>
这是我的apache VirtualHost:
<VirtualHost *:80>
ServerName self
ServerAlias *.self
VirtualDocumentRoot /some/path
</VitualHost>
以下......
BrowserMatch "(?i:Googlebot)" no_bot=1 #google
<If "reqenv('no_bot') == 1">
AliasMatch .* /path/to/search-bot/index.php
</If>
...在运行service apache2 restart
:
AliasMatch not allowed here
修改
关于Clocking for Google的问题,是的,我理解,但我 DO 打算受到Google的惩罚。我有特殊的理由。