【小结】在httpd.conf 中配置VirtualHost

通过在Apache 的配置文件中httpd.conf 配置VirtualHost,可以使访问定向到特定的目录下,以下是在ZF 手册的quickstart 中看到的,记录下。。。

 

在httpd.conf 文件的末尾添加VirtualHost 的声明语句,保存然后重启Apache

 

  ServerName quickstart.local DocumentRoot d:/wamp/www/quickstart/public SetEnv APPLICATION_ENV "development" DirectoryIndex index.php AllowOverride All Order allow,deny Allow from all

 

接下来在hosts 文件中添加一行:  127.0.0.1    quickstart.local

 

这样就可以通过quickstart.local 来访问quickstart/public 目录了,除些之外的目录均无法访问

你可能感兴趣的:(web后台)