ThinkPHPURL_MODEL为2正确使用

1配置apche虚拟机

2修改D:\myenv\Apache2.2\conf\extra\httpd-vhosts.conf文件,在中添加 


    ServerAdmin [email protected]
    DocumentRoot "D:/myenv/Apache2.2/htdocs/umlxe_manager/"
    ServerName ummanager.com.cn
    ServerAlias www.ummanager.com.cn
    ErrorLog "logs/dummy-host.lhw-error.log"
    CustomLog "logs/dummy-host.lhw-access.log" common
    
    AllowOverride All
    Options Indexes Includes FollowSymLinks
    #Options FollowSymLinks
    Order allow,deny
    Allow from all
    DirectoryIndex index.html index.php
    

3、httpd.conf配置文件中加载了mod_rewrite.so模块

4、AllowOverride None 讲None改为 All 

5、新建.htaccess文件,内容如下


  Options +FollowSymlinks
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
4重启apache

你可能感兴趣的:(ThinkPHPURL_MODEL为2正确使用)