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ファイルで、次のものに一致する正しい正規表現を取得したいと思います
any.com/anypage.html は、anything.com/anypage にリダイレクトされます。
したがって、これにより、基本的にhtmlが私のURLから取り除かれます。
ありがとう
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)\.html$ /$1 [L,R=301]