博客列表 >yii2.0配置以pathinfo的形式访问

yii2.0配置以pathinfo的形式访问

南鸢离梦的博客
南鸢离梦的博客原创
2019年11月12日 16:23:37620浏览
  1. yii2.0默认的访问形式为:dxr.com/index.php?r=index/list,一般我们都会配置成pathinfo的形式来访问:dxr.com/index/list,这样更符合用户习惯。
  2. 具体的配置方法为:
  3. 一.配置yii2.0
  4. 打开config目录下的web.php,在$config = [ 'components'=>[ 加到这里 ] ]中加入:
  5. 'urlManager' => [
  6. 'enablePrettyUrl' => true,
  7. 'showScriptName' => false,
  8. 'rules' => [
  9. ],
  10. ],
  11. yii配置pathinfo
  12. 此时,yii2.0已经支持以pathinfo的形式访问了,如果此时访问不了,继续往下看。
  13. 二.配置web服务器。
  14. 1.如果是apache,在入口文件(index.php)所在的目录下新建一个文本文件,接着另存为.htaccess,用记事本打开此文件加入:
  15. RewriteEngine on
  16. RewriteCond %{REQUEST_FILENAME} !-f
  17. RewriteCond %{REQUEST_FILENAME} !-d
  18. RewriteRule . index.php
  19. 保存即可。
  20. 2.如果是nginx,在nginx配置文件中加入:
  21. server {
  22. listen 80;
  23. server_name www.daixiaorui.com;
  24. location / {
  25. root E:/wwwroot/yii2.0;
  26. index index.html index.php;
  27. if (!-e $request_filename){
  28. rewrite ^/(.*) /index.php last;
  29. }
  30. }
  31. location ~ \.php$ {
  32. root E:/wwwroot/yii2.0;
  33. fastcgi_pass 127.0.0.1:9000;
  34. fastcgi_index index.php;
  35. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  36. include fastcgi_params;
  37. }
  38. }
  39. 三:重启web服务器。
  40. 至此,配置完毕。
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议