У меня есть сайт с некоторыми html-файлами. Одним из них является 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]