VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • mac系统下php项目除了首页全访问不了

有网友反映mac配置apache的有问题,除了首页全都访问不了,小编找来了相关的解决办法,有需要的朋友可以来了解一下。

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

AllowOverride None 将None改为 All

  1. DocumentRoot "/Library/WebServer/Documents" 
  2.  
  3. <Directory "/Library/WebServer/Documents"> 
  4.  
  5.     # 
  6.  
  7.     # Possible values for the Options directive are "None", "All", 
  8.  
  9.     # or any combination of: 
  10.  
  11.     #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews 
  12.  
  13.     # 
  14.  
  15.     # Note that "MultiViews" must be named *explicitly* --- "Options All" 
  16.  
  17.     # doesn't give it to you. 
  18.  
  19.     # 
  20.  
  21.     # The Options directive is both complicated and important.  Please see 
  22.  
  23.     # http://httpd.apache.org/docs/2.4/mod/core.html#options 
  24.  
  25.     # for more information. 
  26.  
  27.     # 
  28.  
  29.     Options FollowSymLinks Multiviews 
  30.  
  31.     MultiviewsMatch Any 
  32.  
  33.   # 
  34.  
  35.     # AllowOverride controls what directives may be placed in .htaccess files. 
  36.  
  37.     # It can be "All", "None", or any combination of the keywords: 
  38.  
  39.     #   AllowOverride FileInfo AuthConfig Limit 
  40.  
  41.     # 
  42.  
  43.     #AllowOverride None 
  44.  
  45.      AllowOverride All         #这里这里!!! 
  46.  
  47.      Order deny,allow 
  48.  
  49.      Allow from all 
  50.  
  51.  
  52.     # 
  53.  
  54.     # Controls who can get stuff from this server. 
  55.  
  56.     # 
  57.  
  58.     Require all granted 
  59.  
  60. </Directory> 
  61.  

出处:http://www.phpfensi.com/php/20200222/12797.html


相关教程