- 论坛徽章:
- 1
|
win32下apache如何设置虚拟目录
<VirtualHost *:80>;
ServerAdmin webmaster@127.0.0.1
DocumentRoot /usr/local/www/data/
ServerName 127.0.0.1
ErrorLog logs/127.0.0.1-error_log
CustomLog logs/127.0.0.1-access_log combined
DirectoryIndex index.htm index.html index.php index.cgi index.pl
DefaultLanguage zh-CN
AddDefaultCharset GB2312
<Directory "/usr/local/www/data/">;
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>;
ScriptAlias /cgi-bin/ "/usr/local/www/cgi-bin/"
<Directory "/usr/local/www/cgi-bin/">;
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>;
php_admin_flag engine on
php_admin_flag safe_mode off
php_admin_value open_basedir none
php_admin_value open_basedir "/usr/local/www/data;/usr/local/tmp/php"
<Location ~ "/*.jsp|/*/servlet/*">;
JkUriSet worker ajp13:localhost:8009
</Location>;
<Location />;
MaxConnPerIP 10
# exempting images from the connection limit is often a good
# idea if your web page has lots of inline images, since these
# pages often generate a flurry of concurrent image requests
NoIPLimit image/*
</Location>;
<Location />;
MaxConnPerIP 1
# In this case, all MIME types other than audio/mpeg and video*
# are exempt from the limit check
OnlyIPLimit text/html
</Location>;
</VirtualHost>; |
|