最终显示的url格式为:http://localhost/yii2/frontend/web/site/about

在/config/main.php中 ’components‘=>[] 中添加如下代码:

'urlManager' => [
            'enablePrettyUrl' => true,//将?r=site%2Fabout美化为/site/about
            'showScriptName' => false,//隐藏index.php
            'rules' => [
            ],
        ],

还需在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    

最新文章

  1. Chrome浏览器快捷键大全(新加了其他一些浏览器的独有)
  2. atitit groovy 总结java 提升效率
  3. HDU 2487 Ugly Windows
  4. Thread的六种状态
  5. Supervisor 守护 dotnetcore 程序
  6. CSS 实现:父元素包含子元素,子元素垂直居中布局
  7. ASP.NET设置404页面返回302HTTP状态码的解决方法
  8. iOS获取图片的Base64String,兼容Android,java,web,jpg(jpeg),png
  9. C# Coding & Naming Conventions
  10. 五笔拼音反查精灵 v6.69 绿色版
  11. iOS触摸事件深入
  12. js二维码插件总结
  13. UVA 1626 Brackets sequence 区间DP
  14. 衡量android开发者水平的面试问题-android学习之旅(91)
  15. Connection 对象简介 方法解读 JDBC简介(四)
  16. C语言--第4次作业
  17. Mac搭建SVN服务器+Cornerstone连接服务器
  18. poj3061 Subsequence(尺取法)
  19. HTML常用标签定义,用法及例子
  20. BZOJ1146[CTSC2008]网络管理——出栈入栈序+树状数组套主席树

热门文章

  1. [deviceone开发]-do_Webview的基本示例
  2. [deviceone开发]-do_Webview加载JQueryMobile的示例
  3. 多页的TIFF图片在aspx页面分页显示
  4. ArcGIS Engine开发之地图基本操作(2)
  5. Python导入其他文件中的.py文件 即模块
  6. 版本控制-Git服务器搭建和常用命令使用
  7. python快速生成注释文档的方法
  8. 使用selenium编写脚本常见问题(一)
  9. hadoopfs: 未找到命令...
  10. 跨应用使用Spoon框架截图的方法