Apache 404具有特定端口

时间:2014-03-14 19:13:50

标签: apache http-status-code-404 port

我有一台LAMP服务器,我必须使用80以外的端口。 我设置了“Listen 3689”,但我没有删除“Listen 80”。 当我使用端口80时,一切正常,但是当我尝试另一个时,我得到了404。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

您应该添加一个包含所需端口的虚拟主机

通常有

<VirtualHost *:80>
DocumentRoot /www/example1
ServerName www.example.com

# Other directives here

</VirtualHost>

现在你需要添加

<VirtualHost *:3689>
DocumentRoot /www/example1
ServerName www.example.com

# Other directives here

</VirtualHost>