加入收藏 | 设为首页 | 会员中心 | 我要投稿 淮安站长网 (https://www.0517zz.cn/)- 运营、云管理、经验、智能边缘、云硬盘!
当前位置: 首页 > 教程 > 正文

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

发布时间:2022-08-04 12:50:50 所属栏目:教程 来源:互联网
导读:有网友反映mac配置apache的有问题,除了首页全都访问不了,小编找来了相关的解决办法,有需要的朋友可以来了解一下。 httpd.conf配置文件中加载了mod_rewrite.so模块 AllowOverride None 将None改为 All DocumentRoot /Library/WebServer/Documents Director
  有网友反映mac配置apache的有问题,除了首页全都访问不了,小编找来了相关的解决办法,有需要的朋友可以来了解一下。
 
  httpd.conf配置文件中加载了mod_rewrite.so模块
 
  AllowOverride None 将None改为 All
 
  DocumentRoot "/Library/WebServer/Documents"
   
  <Directory "/Library/WebServer/Documents">
   
      #
   
      # Possible values for the Options directive are "None", "All",
   
      # or any combination of:
   
      #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
   
      #
   
      # Note that "MultiViews" must be named *explicitly* --- "Options All"
   
      # doesn't give it to you.
   
      #
   
      # The Options directive is both complicated and important.  Please see
   
      # http://httpd.apache.org/docs/2.4/mod/core.html#options
   
      # for more information.
   
      #
   
      Options FollowSymLinks Multiviews
   
      MultiviewsMatch Any
   
    #
   
      # AllowOverride controls what directives may be placed in .htaccess files.
   
      # It can be "All", "None", or any combination of the keywords:
   
      #   AllowOverride FileInfo AuthConfig Limit
   
      #
   
      #AllowOverride None
   
       AllowOverride All         #这里这里!!!
   
       Order deny,allow
   
       Allow from all
   
   
      #
   
      # Controls who can get stuff from this server.
   
      #
   
      Require all granted
   
  </Directory>
   a

(编辑:淮安站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读