繁体   English   中英

搜索禁止:/在robots.txt中

[英]Search Disallow: / in robots.txt

我想在域的robots.txt中搜索“ Disallow: /
我已经写了正则表达式,但是不起作用。

if(preg_match("!Disallow:\s*/\s\r\n!i",$string,$disallow_char))
{
  print_r($disallow_char);
}

以下是两个测试案例。
1)

User-agent: * 
Disallow: /

2)

User-agent: *
Disallow: /product/generate_pdf/40
Disallow: /news/
Disallow: /news/bollards
Disallow: /product/generate_pdf/44
Disallow: /
Disallow: /page_management/insert
Disallow: /glossary/ajax_call/update_words

在两种情况下均应输出true。

您需要断言换行序列或字符串的结尾如下:

echo preg_match('~Disallow:\h*/(?:\R|$)~i', $string)

说明

Disallow:      # 'Disallow:'
\h*            # horizontal whitespace (0 or more times)
/              # '/'
(?:            # group, but do not capture:
  \R           #   '\R' (any Unicode newline sequence) 
 |             #  OR
  $            #   before an optional \n, and the end of the string
)              # end of grouping

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM