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.
我有一个 google 已编入索引的 url,看起来就像http://example.com/someth…/那些省略号一样。不,这不仅仅是 3 个时期。我正在尝试对 .htaccess 中的页面进行 404 处理,但我不知道如何匹配省略号。
http://example.com/someth…/
我已经尝试过RedirectMatch 404 ^/someth\x2026/,但它不起作用。
RedirectMatch 404 ^/someth\x2026/
有人知道如何使用正则表达式匹配省略号吗?
尝试这个
<FilesMatch /include(/?|/.*)> Order allow,deny Deny from all </FilesMatch> RedirectMatch 404 ^/include(/?|/.*)$
尝试使用 URL 编码(UTF-8 编码字符),例如:
^/?someth%E2%80%A6/
检查您的服务器日志以获取请求使用的确切 URL。