时间:2021-07-01 10:21:17 帮助过:3人阅读
以配置alise别名目录为例,把/Users/redraiment/workspace/映射到http://localhost/workspace/,在2.2版本中配置信息如下:
<IfModule alias_module>
    Alias /workspace "/Users/redraiment/workspace/"
    <Directory "/Users/redraiment/workspace/">
        AllowOverride All
        Options Indexes MultiViews FollowSymLinks ExecCGI
        Order allow,deny
        Allow from all
        DirectoryIndex index.html index.php
    </Directory>
</IfModule>
升级到2.4版本之后:Order allow,deny和Allow from all要改成Require all granted,如下所示:
<IfModule alias_module>
    Alias /workspace "/Users/redraiment/workspace/"
    <Directory "/Users/redraiment/workspace/">
        AllowOverride All
        Options Indexes MultiViews FollowSymLinks ExecCGI
        Require all granted
        DirectoryIndex index.html index.php
    </Directory>
</IfModule>
 
在Mac下配置php开发环境:Apache+php+MySql
标签: