zoukankan      html  css  js  c++  java
  • yii框架 隐藏index.php 以及美化URL(pathinfo模式访问)

    首先我们分步骤来:

    安装好 yii 以后  我们看到的url地址如下所示:

    http://www.3w.com/MyApp/backend/web/index.php?r=site%2Flogin

    我们首先去掉 index.php

    1.去apache配置中开启rewirte模块 

    2.配置好我们的虚拟主机  必须开启外部重写规则:

    3.在下面的目录下 创建   .htaccess  文件

    4.     .htaccess文件里内容如下:

     
    [php] view plain copy
     
     
    print?
    1. <code class="language-php"><span style="font-size:18px;"><strong>Options +FollowSymLinks    
    2. IndexIgnore */*    
    3. RewriteEngine on    
    4.   
    5. if a directory or a file exists, use it directly    
    6. RewriteCond %{REQUEST_FILENAME} !-f    
    7. RewriteCond %{REQUEST_FILENAME} !-d    
    8.   
    9. # otherwise forward it to index.php    
    10. RewriteRule . index.php  </strong></span></code>  
    1.  
      Options +FollowSymLinks
    2.  
      IndexIgnore */*
    3.  
      RewriteEngine on
    4.  
       
    5.  
      # if a directory or a file exists, use it directly
    6.  
      RewriteCond %{REQUEST_FILENAME} !-f
    7.  
      RewriteCond %{REQUEST_FILENAME} !-d
    8.  
       
    9.  
      # otherwise forward it to index.php
    10.  
      RewriteRule . index.php


    5.现在再次在浏览器  访问我们的项目 我们就可以去掉index.php    url  如下:

    http://www.3w.com/MyApp/backend/web/?r=site%2Flogin

    然后我们 美化 url 如下:

    http://www.yii2.com/site/index.html

    我们只需要在config目录下配置即可:

    2.添加如下代码:

    1.  
      'urlManager' => [
    2.  
      'enablePrettyUrl' => true,//开启url美化
    3.  
      'showScriptName' => false,//隐藏index.php
    4.  
      'suffix' => '.html',//后缀
    5.  
      ],


    3.然后就成功了,试试吧

  • 相关阅读:
    mac 使用指南
    客服系统引用方案
    CSS中margin和padding的区别
    NuGet学习笔记(1)——初识NuGet及快速安装使用
    百度搜索这些词:(百度搜索特效,好玩)
    sql语言:如何查询字符串某个字符的个数?
    Sql日期时间格式转换
    SQL获取当前时间(日期)
    Redis快速入门:初识Redis
    选择Key-Value Store
  • 原文地址:https://www.cnblogs.com/liangzia/p/9705455.html
Copyright © 2011-2022 走看看