通过 .htaccess 删除 .html 扩展名

通过 .htaccess 删除 .html 扩展名

如何使用 .htaccess 文件删除 .html 扩展名或任何扩展名?

答案1

Google 是你的朋友 :-)

看一眼本文

代码:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html

信用:http://eisabainyo.net/weblog/2007/08/19/removing-file-extension-via-htaccess/

相关内容