-2

需要使用 .htaccess将网站http://www.example.com/testimonials.htm 改为http://www.example.com/testimonials 。

请帮忙

4

2 回答 2

1

试试这个

<IfModule mod_rewrite.c>
  RewriteEngine on

  RewriteCond %{REQUEST_URI} !.*\.
  RewriteRule ^(.*) /$1.htm [L,QSA]
</IfModule>
于 2012-09-13T11:25:03.133 回答
0

试试这个 :

RewriteEngine on

RewriteBase /

RewriteRule (.*)/$ $1 [L,QSA]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !\.htm$
RewriteRule ^(.*)$ $1.html [L,QSA]
于 2012-09-13T12:08:20.277 回答