thinkphp5.0在开启重定向,空间iis7.5下配置web.config和apache下配置.htaccess

有疑问的可以加群162092974咨询


根目录下的web.config文件



    
        
            
            
            
            
            
            
            
        
        
            
                
                    
                    
                        
                        
                    
                    
                
            
        
    

根目录下的.htaccess



  Options +FollowSymlinks -Multiviews
  RewriteEngine On

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



你可能感兴趣的:(php,thinkphp)