我正在使用 Joomla 3.x。已激活 SEF 链接、URL 重写和向 URL 添加后缀。试图从我的链接中隐藏 .html 扩展名。例如
来自: website.com/contact.html 至: website.com/contact
我尝试将 .htaccess 编辑为:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html
但它不起作用。有任何想法吗?
谢谢!