Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一些关于正则表达式的帮助。
我正在为 .htaccess 构建一些 301 规则
我需要重定向以特定字符串开头的所有 url,不包括在 match-all 部分中具有给定单词的 URL
这是我正在使用的简单规则:
/my/sample/url/(.*)
我需要编辑 (.*) 部分来说明:除了包含“foobar”之外的任何内容
如果包含“foobar”我需要不同的 301 规则
这看起来正在工作:
^(?!.*foobar)/my/sample/url/(.*)
有人有更好的解决方案吗?