我有一个已经很好的htaccess脚本,旨在将/about
转发到/about.php
而不显示它,但我想知道是否有人知道如何修改我的.htaccess
文件以转发请求/about.html
至/about
(使用302而非隐藏重定向)
CheckSpelling on
Options -Indexes
Options +FollowSymlinks
DirectoryIndex index.php
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ /index.php?page=$1 [L,QSA]
答案 0 :(得分:2)
试
RewriteCond %{REQUEST_URI} ^/(.+)\.html$ [NC]
RewriteRule . /%1 [R=302,L]