ubuntu下不加index.php无法正常访问

在一次项目中将项目迁移到Ubuntu下发现,如下链接无法正常访问

http://127.0.0.21/Home/Public/login


开启了rewrite也不行,后来经各方找资料解决


<VirtualHost 127.0.0.21:80>  
   DocumentRoot "/var/www/test/"  
   ServerName 127.0.0.21 
   <Directory "/var/www/test/">  
   Options FollowSymLinks IncludesNOEXEC Indexes  
   DirectoryIndex indendex.hx.html index.htm defa default.htm index.php default.php index.cgi default.cgi index.pl default.pl index.shtml AllowOverride Options FileInfo  
  AllowOverride All
  Order Deny,Allow  
  Allow from all  
  </Directory>  
</VirtualHost> 


其中   AllowOverride All 必不可少

你可能感兴趣的:(ubuntu下不加index.php无法正常访问)