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
posted @ 2020-03-11 18:13  xiaobingch  阅读(208)  评论(0)    收藏  举报