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.
私はグーグルがインデックスを付けた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(/?|/.*)$
(UTF-8 でエンコードされた文字の) URL エンコードを使用してみてください。
^/?someth%E2%80%A6/
リクエストが使用している正確な URL については、サーバー ログを確認してください。