需要使用 .htaccess将网站http://www.example.com/testimonials.htm 改为http://www.example.com/testimonials 。
请帮忙
需要使用 .htaccess将网站http://www.example.com/testimonials.htm 改为http://www.example.com/testimonials 。
请帮忙
试试这个
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} !.*\.
RewriteRule ^(.*) /$1.htm [L,QSA]
</IfModule>
试试这个 :
RewriteEngine on
RewriteBase /
RewriteRule (.*)/$ $1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !\.htm$
RewriteRule ^(.*)$ $1.html [L,QSA]