如何在Amazon服务器上配置www的重定向?

时间:2015-02-21 09:50:38

标签: wordpress apache .htaccess redirect bitnami

我们通过Amazon Bitnami在服务器上放置了一个站点(Wordpress)。 我们尝试设置从www.site.com到site.com的重定向(删除“www”)。 但是,它现在从任何www子页面重定向到主页www.site.com(而不是正确的子页面)。 (从www.site.com/page到site.com,而不是到site.com/page) 如何设置带有www子页面的重定向到没有www。?

的网站的同一页面

我在Apache httpd.conf文件中添加了代码。 LoadModule rewrite_module modules/mod_rewrite.so

AllowOverride controls what directives may be placed in .htaccess files.      It can be "All", "None", or any combination of the keywords:      AllowOverride FileInfo AuthConfig Limit

`AllowOverride All` 

还编辑了文件:.htaccess,httpd-app.conf,httpd-vhosts.conf

1 个答案:

答案 0 :(得分:0)

它可能只是一个htaccess问题。尝试在htaccess中使用此代码,将替换示例替换为您的网站名称

RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L]
RewriteRule ^index\.php$ - [L]