我想在我的网站上隐藏文件扩展名。
这是我的内容.htaccess
:
# Do not remove this line, otherwise mod_rewrite rules will stop working
RewriteBase /
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^([^/]+)/$ $1.html
例如:
http://example.com/website2
将映射到http://example.com/website2.html