阅读以下说明,回答问题1~5,将答案填入对应的解答栏内。 配置WWW服务器是Linux操作平台的重要工作之一,而Apach是目前应用最为广泛的Web服务器产品之一。在Linux下安装Apache Web服务,Apache服务程序http启动时需要读取

admin2010-12-20  19

问题 阅读以下说明,回答问题1~5,将答案填入对应的解答栏内。
   配置WWW服务器是Linux操作平台的重要工作之一,而Apach是目前应用最为广泛的Web服务器产品之一。在Linux下安装Apache Web服务,Apache服务程序http启动时需要读取配置文件httpd.conf,以下是一个httpd.conf配置文件的片断:
   ##httpd.conf--Apache HTTP server configuration file
   ###Section 1:Global Environment
   ServerType standalone
   ServerRoot  "/etc/httpd"
   Timeout 300
   KeepAlive On
   MaxKeepAliveRequests 100
   KeepAliveTimeout 15
   MaxClients 150
   ###Section 2:’Main’server configuration
   Port 80
   User apache
   Group apache
   ServerAdmin webmaster@abc.com.cn
   ServerName www.abc.com.cn
   DocumentRoot"/var/www/html"
   UserDir public_html
   DirectoryIndex index.html
   Alias/Jianji"/home/zhang/jianji"
   ScriptAlias  /cgi-bin/ "/var/www/cgi-bin/"
   ErrorDocument 404/missing.html
   ###Section 3:Virtual Hosts
   NameVirtualHost 192.168.10.101
   <VirtualHost 192.168.10.101>
       ServerAdmin webmaster@abc.com.cn
      DocumentRoot /www/htdocs/abc
      ServerName markert.abc.com.cn
      ErrwrLog logs/host.some_domain.com-error_log
      CustomLog log/host.some_domain.com-access_log common
  </VirtuaHost>
httpd.conf文件中Alias/jianji"/home/zhang/jianji"一行的含义是_____。

选项

答案建立一个虚拟目录/jianji,其真实路径是/home/zhang/jianji。

解析 Alias参数用于将URL与服务器文件系统中的真实位置进行直接映射(虚拟目录),一般的文档将在DocumentRoot中进行查询,然而使用Alias定义的路径将直接映射到相应目录下,而不再到DocumentRoot下面进行查询。因此,Alias/jianji"/home/zhang/jianji"一行的含义是建立一个虚拟目录/jianji,其真实路径是/home/zhang/jianji。
转载请注明原文地址:https://kaotiyun.com/show/wtPZ777K
0

相关试题推荐
最新回复(0)