YII 框架省略 index.php
打开 urlManager 就会自动省略 ?r=
在index.php同级目录下创建 .htaccess 文件 ,文件内容如下
Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it to index.php
RewriteRule . index.php

浙公网安备 33010602011771号