私はいくつかのhtmlファイルを含むサイトを持っています。それらの 1 つが contact.html です。これは私の .htaccess です。site.com/contact でページをアドレス指定できますが、site.com/contact/ ではアドレス指定できないという問題があります。(末尾のスラッシュに注意してください。) 修正方法は?
RewriteEngine On
# If the requested URI does not contain a period in the final path-part
RewriteCond %{REQUEST_URI} !(\.[^./]+)$
# and if it does not exist as a directory
RewriteCond %{REQUEST_fileNAME} !-d
# and if it does not exist as a file
RewriteCond %{REQUEST_fileNAME} !-f
# then add .html to get the actual filename
rewriterule (.*) /$1.html [L]