apache 服务器httpd-vhosts.conf 配置

# 设置虚拟主机  dedecms

	# 设置网站目录
	DocumentRoot "F:/www/class/web64/www.blog.com"
	# 设置网站域名
	ServerName www.blog.com
	# 错误日志
	ErrorLog "F:/www/class/web64/www.blog.com/logs/error.log"
	# 成功日志
	CustomLog "F:/www/class/web64/www.blog.com/logs/access.log" combined
	# 设置目录访问权限
	

	    # 指定目录启用特怀
	    Options Indexes FollowSymLinks 
	    # 是否允许使用.htaccess文件
	    AllowOverride All
	    # 访问目录权限
	    Require all granted
	

	ErrorDocument 403 "http://www.test.com/"
	ErrorDocument 404 "http://www.test.com/"

你可能感兴趣的:(服务器)