为什么Apache不能看到我的webmail子目录

我最近在我的linode盒子上设置了一个新的网站,一切正常。 除了我似乎无法在我的网站上有一个webmail子目录。 每当我去http://mysite.com/webmail浏览器带我到谷歌searchnetworking邮件。

但是,如果我将文件夹重命名为webmailzzz ,例如,它可以正常工作,我可以从http://mysite.com/webmailzzz

我只是把名称服务器移动到Linode有没有一种可能性,从旧的主机是造成问题,直到它正确更新?

编辑:这里要求的是Apache的configuration文件。

/apache2/sites-available/mysite.com

 <VirtualHost 173.255.243.240:443> SSLEngine On SSLCertificateFile /etc/apache2/ssl/apache.pem SSLCertificateKeyFile /etc/apache2/ssl/apache.key ServerAdmin [email protected] ServerName www.mysite.com DocumentRoot /srv/www/mysite.com/public_html/ <Directory /> Options Indexes FollowSymLinks AllowOverride None </Directory> ErrorLog /srv/www/mysite.com/logs/error.log CustomLog /srv/www/mysite.com/logs/access.log combined </VirtualHost> <VirtualHost 173.255.243.240:80> ServerAdmin [email protected] ServerName mysite.com ServerAlias www.mysite.com DocumentRoot /srv/www/mysite.com/public_html/ ErrorLog /srv/www/mysite.com/logs/error.log CustomLog /srv/www/mysite.com/logs/access.log combined </VirtualHost> 

/apache2/apache2.conf(注释已删除)

 #ServerRoot "/etc/apache2" //WAS COMMENTED OUT LockFile ${APACHE_LOCK_DIR}/accept.lock PidFile ${APACHE_PID_FILE} Timeout 300 KeepAlive On MaxKeepAliveRequests 100 KeepAliveTimeout 15 <IfModule mpm_prefork_module> StartServers 5 MinSpareServers 5 MaxSpareServers 10 MaxClients 150 MaxRequestsPerChild 0 </IfModule> <IfModule mpm_worker_module> StartServers 2 MinSpareThreads 25 MaxSpareThreads 75 ThreadLimit 64 ThreadsPerChild 25 MaxClients 150 MaxRequestsPerChild 0 </IfModule> <IfModule mpm_event_module> StartServers 2 MinSpareThreads 25 MaxSpareThreads 75 ThreadLimit 64 ThreadsPerChild 25 MaxClients 150 MaxRequestsPerChild 0 </IfModule> User ${APACHE_RUN_USER} Group ${APACHE_RUN_GROUP} AccessFileName .htaccess <Files ~ "^\.ht"> Order allow,deny Deny from all Satisfy all </Files> DefaultType text/plain HostnameLookups Off ErrorLog ${APACHE_LOG_DIR}/error.log LogLevel warn Include mods-enabled/*.load Include mods-enabled/*.conf Include httpd.conf Include ports.conf LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %>s %O" common LogFormat "%{Referer}i -> %U" referer LogFormat "%{User-agent}i" agent Include conf.d/ Include sites-enabled/ 

编辑2 – 克里斯的build议后

好,所以经过一番探讨,我已经缩小到Firefox,因为其他浏览器都觉得没问题。 我现在唯一的问题是,在另一个网站上我设置完全相同,即所有浏览器的webmail文件夹工作正常。 哎呀!

是什么让你觉得它有什么与networking服务器?

你有没有尝试过使用不同的浏览器?

尝试使用一个工具,告诉你什么浏览器正在请求(tamperdata,fiddler,iehttpheaders,萤火虫…),看看什么请求浏览器正在发送/接收。

由于您可以访问http://mysite.com/webmailzzz ,因此不能成为DNS问题。

DNS只涉及URL中的域名,在这里是mysite.com。 显然,解决正确(因为你可以连接到重命名的子目录)。

问题可能与Apacheconfiguration有关。 你可以发布你的configuration进一步的帮助?