Eu comprei recentemente um VPS e um domínio. O VPS roda o Ubuntu 16.04 com o Apache 2.4. Quando vou ao navegador e digito http://example.com
, a página de índice é carregada corretamente. O mesmo acontece se eu colocar www
antes do nome do domínio, mas nesse caso o www
desaparece.
Como faço com que www
fique na barra de endereço e, possivelmente, redirecione todas as solicitações de non-www
? Isso é extremamente importante para mim desde que comprei um certificado SSL para o domínio com www
incluído.
Eu tentei modificar as configurações de DNS para conseguir isso, mas até agora todas as minhas tentativas falharam miseravelmente.
Minhas configurações atuais (de trabalho) são:
=== A records ===
[empty] 31.14.131.29
localhost 127.0.0.1
webmail 62.149.158.92
webmail 62.149.158.91
www 31.14.131.29
=== AAAA records ===
None
=== CNAME records ===
None
Também tentei usar .htaccess
, mas aparentemente os pedidos foram capturados em um loop.
Esta é a primeira vez que eu configuro um VPS e me sinto um pouco perdido. Você pode por favor me mostrar o caminho certo para fazer isso?
Editar : 000-default.conf
conteúdo do arquivo
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
ServerName www.grandegiove.com
ServerAdmin [email protected]
DocumentRoot /var/www/html
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
Editar : .htaccess
arquivo de conteúdo
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^grandegiove.com[nc]
RewriteRule ^(.*)$ http://www.grandegiove.com/$1 [l,r=301,nc]
e ainda www não aparece.
Tags ssl vps domain-name-system