在 Robots.txt 上禁止动态页面

Disallow dynamic pages on Robots.txt

我一直在寻找答案,但找不到。

我有以下结构

http://mysite-com/universities/UNIVERSITY_ID/review

我试图禁止评论页面,但保留动态的 UNIVERSITY_ID 页面。

我如何在 robots.txt 中完成此操作?

这行得通吗:Disallow /universities/*/review

谢谢

使用通配符是解决此问题的更好方法。

User-agent: *
disallow: /*review$

参考:https://webmasters.stackexchange.com/questions/72722/can-we-use-regex-in-robots-txt-file-to-block-urls