常用

1
2
3
4
5
6
7
8
9
10
RewriteEngine on
RewriteBase /

## 去掉链接结尾的 index.php、index.htm、index.html
RewriteRule ^(.*)index\.(php|html?)$ $1 [R=301,L]

## 使忽略 .php 后缀的请求可以访问 php 文件
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php