Apache Linux configura a página de inicialização personalizada Virtualhosts

1

Eu configurei o DNS e o virtualhosts no meu sistema Linux, mas ao navegar para o ex: www.vb1.be ele mostra o diretório correto (home / vb1 /) e seus subdiretórios. Eu sei que isso é porque o arquivo html principal que deve ser carregado não é chamado index.html mas homepage.html. Então, como eu posso definir esta homepage.html para lançar toda vez que alguém navega para www.vb1.be?

<VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot /home/vb1.be
    ServerName vb1.be
    ServerAlias www.vb1.be
    ErrorLog logs/vb1.be-error_log
    CustomLog logs/vb1.be-access_log common
</VirtualHost> 
    
por user3629755 26.08.2014 / 11:27

2 respostas

2

Use a diretiva DirectoryIndex :

The DirectoryIndex directive sets the list of resources to look for, when the client requests an index of the directory by specifying a / at the end of the directory name. Local-url is the (%-encoded) URL of a document on the server relative to the requested directory; it is usually the name of a file in the directory. Several URLs may be given, in which case the server will return the first one that it finds. If none of the resources exist and the Indexes option is set, the server will generate its own listing of the directory.

Portanto, você precisaria:

DirectoryIndex homepage.html

dentro do VirtualHost .

    
por 26.08.2014 / 11:36
0

Primeiro pare o serviço:

/etc/init.d/httpd stop

Abra o arquivo de configuração do apache

/etc/httpd/conf/httpd.conf

Adicionar

DirectoryIndex  homepage.html

Aqui você pode adicionar.

<VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot /home/vb1.be
    ServerName vb1.be
    ServerAlias www.vb1.be
    ErrorLog logs/vb1.be-error_log
    DirectoryIndex  homepage.html
    CustomLog logs/vb1.be-access_log common
</VirtualHost> 

Verifique se há algum erro na sintaxe usando

httpd -t

inicie o httpd

/etc/init.d/httpd start
    
por 26.08.2014 / 11:38