Yii2.0 URL美化功能Nginx与Apache配置文件
NGinx:
location / {
index index.html index.htm index.php;
try_files $uri $uri/ /index.php$is_args$args;
}
Apache:
Options +FollowSymLinks
IndexIgnore /
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.phpaa

浙公网安备 33010602011771号