yii2 伪静态设置backend/frontend/api
yii2 2019-06-26 10:40:14

1、 apache

PHP Code复制内容到剪贴板
  1. web/.htaccess  
  2. web/admin/.htaccess  
  3. web/api/.htaccess  

你只需要保证apache的AllowOverride为All

 

2、nginx

PHP Code复制内容到剪贴板
  1. server {  
  2.     server_name www.yourserver.com;  
  3.     listen 80;  
  4.     index index.html index.htm index.php;  
  5.     root your-yii2cmf-path/web;  
  6.     location / {  
  7.         try_files $uri $uri/ /index.php?$query_string;  
  8.     }  
  9.     location /admin {  
  10.         try_files $uri $uri/ /admin/index.php?$query_string;  
  11.     }  
  12.     location /api {  
  13.         try_files $uri $uri/ /api/index.php?$query_string;  
  14.     }  
  15.     location ~ \.php$ {  
  16.         fastcgi_pass 127.0.0.1:9000;  
  17.         include fastcgi.conf;  
  18.     }  
  19. }  

满足以上条件后,可以到模块管理urlrule模块配置开启url美化

 

 

 

本文来自于:http://www.yoyo88.cn/study/yii2/441.html

下一篇 yii2 migrate
Powered by yoyo苏ICP备15045725号