tomcat5.5/7 建立虚拟目录后访问权限问题?

配置了虚拟目录web.xml权限部分如下: <security-constraint> <web-resource-collection> <url-pattern>/*</url-pattern> <http-method>GET</http-method> <http-method>PUT</http-method> <http-method>HEAD</http-method> <http-method>TREACE</http-method> <http-method>DELETE</http-method> <http-method>POST</http-method> <http-method>OPTIONS</http-method> </we...

作者: lgpjyf 发布时间: 03-22

紧急,跪求Apache ExecCGI问题!!!

<Directory "/webconsole/htroot"> Options FollowSymLinks ExecCGI AllowOverride all order allow,deny allow from all <Directory "/webconsole/htroot"> Apache如上设置后/webconsole/htroot目录下,cgi可以通过http请求(PUT/POST等)访问。 但是验证发下如下疑问 1.html,js权限提示Allow: GET, HEAD, OPTIONS 这个是默认的权限吗?因为我看httpd.conf配置文,html,js...

作者: Nacrum 发布时间: 03-22

Apache虚拟机配置问题求助

Apache我添加一台虚拟机在conf文件尾添加如下: NameVirtualHost *:80 <VirtualHost *:80> ServerAdmin webmaster@qinrh-host.localhost DocumentRoot D:/www/qinrh.com ServerName qinrh.com ServerAlias www.qinrh.com ErrorLog "../logs/qinrh.com_error.log" CustomLog "../logs/qinrh.com_access.log" common <Directory "D:/www/qinrh.com"> Options FollowSymLinks I...

作者: hongh520 发布时间: 03-22

struts2标签问题

一个list集合里面放的是student对象 student对象有name,age字段 我是要在s:select 标签中获取 list 集合中所有student对象的name字段。 我在ACTION中提供了get set方法 但是我的JSP页面的select标签确实获得list中所有student的对象地址。 求高手指教

作者: a512873519 发布时间: 03-20

请问下为什么带端口访问的网址,_SERVER["SERVER_PORT"]获取到的恒定是80呢

请问下为什么带端口访问的网址,_SERVER[ "SERVER_PORT "]获取到的恒定是80呢。 网址: http://m.dszz.org:7300 但是 ,_SERVER[ "SERVER_PORT "]却始终是80端口。 探针地址 http://m.dszz.org:7300/i.php 烦请告知下是什么问题呢。大概是什么参数或哪里设置的有问题呢 我的操作系统是redhat AS 5 内核 2.6.18 其他信息从探针地址上能看到。

作者: wjmwaq 发布时间: 03-20

apache+php配置后 用phpinfo();测试 没有内容显示

在xp和win7中都做了测试(参照方法:http://www.leapsoul.cn/?p=695) apache版本:httpd-2.2.15-win32-x86-openssl-0.9.8m-r2 php版本:php-5.3.2-Win32-VC6-x86 先安装apache后:测试通过(http://120.0.0.1) 再配置php后:在\Apache2.2\htdocs下新建test.php test.php内容: <? phpinfo(); ?> 浏览器访问 http://120.0.0.1/test.php 后,没有任何内容显示

作者: haojianfeng11 发布时间: 03-20

httpd.conf修改要和IIS共用80端口,启动APACHE报错

httpd.conf修改要和IIS共用80端口,启动APACHE报错 我在httpd.conf里添加了下面这行代码后启动apache报错,启动不了是怎么回事 <VirtualHost *:80> ServerName www.yutianedu.com ProxyPass / http://localhost:81/ ProxyPassReverse / http://localhost:81/ </VirtualHost>

作者: willmawenyang 发布时间: 03-19

Apache + JK 怎么配置

DLOG4J 已经正常工作了,而 S3却不行。要怎么弄才可以访问这种呢? http://localhost/test/xxxxxx/xxxx http://localhost/test 我的 Apache 配置是这样的: # # workers.properties # # list the workers by name worker.list=DLOG4J, status, s3 # localhost server 1 # ------------------------ worker.s1.port=8009 worker.s1.host=localhost worker.s1.type=ajp13 #wor...

作者: sanqiershiyi 发布时间: 03-19

tomcat 启动后如何设置服务状态默认为Stop

能否设置tomcat启动后应用的默认状态为stop 如http://127.0.0.1/manager/html中 Path Display Name Running Sessions Commands /zgqs true 0 Start Stop Reload Undeploy

作者: peterddjj 发布时间: 03-17

如何限制外网用户访问网站下的某个目录?

网站下有一些目录,如aa bbb cc等,里面存储的都是html文件,如何配置让只有内网段用户能访问bb,而外网用户不能访问,外网,即使知道了bb的路径,也访问不到呢?内网是有多个IP段的

作者: twtetgso 发布时间: 03-15