1.1 apache 服务器配置
2018-07-07 12:02 更新
PHP 开发环境配置
- Windows wamp=windows+apache+mysql+php
- Linux lamp=linux+apache+mysql+php
- Mac
虚拟目录配置
步骤1: 配置虚拟目录在 apache 的 conf 目录下 httpd.conf 的 <IfModule dir_module>节点后添加如下代码
<IfModule dir_module>
#相当于欢迎页面
DirectoryIndex index.html index.htm index.php
#你站点的别名
Alias /myblog “D:/myblog”
<Directory d:/myblog>
#这是访问权限设置
Order allow,deny
Allow from all
<Directory>
</IfModule>
步骤2: 注销 DocumentRoot 根目录
步骤3: 重启apache
虚拟主机配置
步骤1: 启用 httpd-vhosts.conf 虚拟主机 在 httpd.conf 文件中搜索 vhost
步骤2: 在 httpd-vhosts.conf 做配置
<VirtualHost 127.0.0.1:80>
DocumentRoot “d:/myblog”
#这里配置欢迎页面
DirectoryIndex index.html index.htm index.php
<Directory />
Options FollowSymLinks
#不允许别人修改我们的页面
AllowOverride None
#设置访问权限
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
步骤3: 修改 hosts 文件 重启 apache
以上内容是否对您有帮助:
更多建议: