Apache 建站点 的配置项 记
该死的百度上,我找了一几个小时都没有找到在Apache中建一个站点的方法和准确的配置说明,所以没办法写出这个随笔,以免下次上火
httpd.conf后面添加: 使用8080端口建的站点。
Listen 8080
NameVirtualHost 127.0.0.1:8080
<VirtualHost *:8080>
ServerName localhost:8080
DocumentRoot "E:/bobby work/php_folder"
<Directory "E:/bobby work/php_folder">
Options FollowSymLinks IncludesNOEXEC Indexes
DirectoryIndex index.php index.html index.shtml
AllowOverride None
Order Deny,Allow
Allow from all
</Directory>
</VirtualHost>

浙公网安备 33010602011771号