.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>
しかし、それは機能していません。www.example.com/about.html
などの URL を変更したいwww.example.com/about
。