如何添加www。在Drupal站点上请求URL?

时间:2011-01-25 02:11:50

标签: http drupal

我想重定向,例如:

http://example.com/        ->  http//www.example.com/
http://example.com/node/1  ->  http://www.example.com/node/1
https://example.com/cart   ->  https://www.example.com/cart

谢谢!

1 个答案:

答案 0 :(得分:4)

在Drupal站点的根目录中,查看.htaccess文件中的注释(在# Various rewrite rules部分。具体来说,查找以下行:

# To redirect all users to access the site WITH the 'www.' prefix,
# (http://example.com/... will be redirected to http://www.example.com/...)
# adapt and uncomment the following:
# RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
# RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]

...并取消注释最后两个,用适当的域名替换example.com。