如何为Tomcat服务器使用htaccess从URL中删除.html

时间:2019-03-07 07:28:01

标签: html .htaccess tomcat

我的网址是:http://localhost:8080/home不起作用。

.htaccess是:

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule .* http://localhost:8080/html/%1 [R=301,L]
RewriteRule ^(.*)$ $1.html [NC,L]

0 个答案:

没有答案