当前位置:首页 > PHP教程 > php环境安装 > 列表

mac系统下php项目除了首页全访问不了

发布:smiling 来源: PHP粉丝网  添加日期:2020-02-22 16:52:18 浏览: 评论:0 

有网友反映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.     # Controls who can get stuff from this server. 
  54.  
  55.     # 
  56.  
  57.     Require all granted 
  58.  
  59. </Directory> 

Tags: mac系统php项目

分享到: