使用 SEO 友好的查询字符串将非 www 重定向到 www

发布于 2024-12-23 12:27:49 字数 1221 浏览 4 评论 0原文

我正在尝试将我的网站从非 www 重定向到 www。我的网站位于 [http://www.alennuskoodit.us]。我尝试这样做,以便所有不带 www 的请求都将重定向到 www。到目前为止还算正常。

但是,如果我访问 http://alennuskoodit.us 我最终会到达这里: http://www.alennuskoodit.us/index.php?qstr=http://www.alennuskoodit.us

这是.htaccess:

Options +FollowSymLinks
Options +Indexes

<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /

# going to install folder
RewriteCond %{REQUEST_URI} (.*)/install/?$
RewriteRule ^(.*)$ %1/install/index.php [NE,R,L]

# going to Admin folder
RewriteCond %{REQUEST_URI} (.*)/admin/?$
RewriteRule ^(.*)$ %1/Admin/index.php [NE,R,L]

# working with client side
RewriteRule ^(.*)/$ index.php?qstr=$1 [L]

</IfModule>

这是我尝试过的,但没有不工作:

RewriteCond %{HTTP_HOST} ^alennuskoodit.us [NC]
RewriteRule ^(.*)$ http://www.alennuskoodit.us/$1 [R=301,NC,L]

我如何将所有查询重定向到 http://alennuskoodit.ushttp://www.alennuskoodit.us 这样我就不会破坏其他重写?

I am trying to redirect my site from non-www to www. My site is at [http://www.alennuskoodit.us]. I try to make it so that all requests without www would be redirected to www. Normal stuff so far.

However, if I go to http://alennuskoodit.us I end up here: http://www.alennuskoodit.us/index.php?qstr=http://www.alennuskoodit.us

This is the .htaccess:

Options +FollowSymLinks
Options +Indexes

<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /

# going to install folder
RewriteCond %{REQUEST_URI} (.*)/install/?$
RewriteRule ^(.*)$ %1/install/index.php [NE,R,L]

# going to Admin folder
RewriteCond %{REQUEST_URI} (.*)/admin/?$
RewriteRule ^(.*)$ %1/Admin/index.php [NE,R,L]

# working with client side
RewriteRule ^(.*)/$ index.php?qstr=$1 [L]

</IfModule>

This is what I tried, which doesn't work:

RewriteCond %{HTTP_HOST} ^alennuskoodit.us [NC]
RewriteRule ^(.*)$ http://www.alennuskoodit.us/$1 [R=301,NC,L]

How could I redirect all queries to http://alennuskoodit.us to http://www.alennuskoodit.us so that I would not end up breaking the other rewrites?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

紫﹏色ふ单纯 2024-12-30 12:27:49

将您的新规则放在所有其他规则之前,

Options +FollowSymLinks
Options +Indexes

<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /

RewriteCond %{HTTP_HOST} ^alennuskoodit.us$ [NC]
RewriteRule ^(.*)$ http://www.alennuskoodit.us/$1 [R=301,NC,L]

#other rules here

即它应该防止 qstr= param

Place your new rule before all the other rules i.e

Options +FollowSymLinks
Options +Indexes

<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /

RewriteCond %{HTTP_HOST} ^alennuskoodit.us$ [NC]
RewriteRule ^(.*)$ http://www.alennuskoodit.us/$1 [R=301,NC,L]

#other rules here

and it should prevent the qstr= param

萝莉病 2024-12-30 12:27:49

步骤 1= 您必须在 htaccess 文件中使用此代码到首选 www 版本:

RewriteCond %{HTTP_HOST} !^(.).YourDomain.com$ [NC] RewriteRule ^(.)$ http://www.YourDomain.com/$1 [R=301,L]

步骤 2= 您必须在 Google 网站管理员工具中设置您的首选域名:

打开您的网站站长工具,然后单击“配置”正下方的“设置”。在右侧查找“首选域”,然后选择您喜欢的带或不带 www 的域。

Step1= You Must Use This Code In htaccess File To Preferred www Version:

RewriteCond %{HTTP_HOST} !^(.).YourDomain.com$ [NC] RewriteRule ^(.)$ http://www.YourDomain.com/$1 [R=301,L]

Step2= You Must Setting Your Preferred Domain In Google WebMaster Tools :

Open up your webmaster tools and click “Settings” right below “Configuration”. To the right look for the “Preferred Domain” and select which domain you prefer With www Or Not.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文