我有一个.htaccess
包含以下代码的文件:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} (/|\.html|/[^.]*)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([A-Za-z0-9-_]+)/?$ $1.html [NC]
</IfModule>
但它不起作用。我想更改 URL,例如www.example.com/about.html
towww.example.com/about
等等。