简体   繁体   English

301重定向在GoDaddy服务器上不起作用

[英]301 Redirects are not working on GoDaddy server

I have a website hosted at GoDaddy. 我在GoDaddy托管了一个网站。 The url is www.immi.hu. 网址是www.immi.hu。 We have changed the old URLs as the old site was replaced with new One. 由于旧站点已被新的One取代,因此我们更改了旧的URL。 I'm trying to redirect some old URLs to new URLs under the same domain as Google has cached them, and do not want to loose customers. 我正在尝试将一些旧的URL重定向到与Google缓存它们的域相同的域下的新URL,并且不想失去客户。

I've created a .htaccess file, and tried the Redirect 301 method and also with RewriteRule. 我创建了一个.htaccess文件,并尝试了Redirect 301方法以及RewriteRule。 None of them seems to work. 他们似乎都不起作用。 The code of the .htaccess file is: .htaccess文件的代码为:

RewriteEngine on
RewriteBase /
RewriteRule \.(xml|ico|eot|svg|ttf|woff|otf|js|css|map|gif|jpe?g|png)$ - [L]
RewriteRule ^(.*) index.php?url=$1 [L,QSA]
RewriteRule ^hu/3d-latvanytervezes-tanfolyamok/3d-lakberendezo-tanfolyam.html$ /3d-latvanytervezes/3d-lakberendezo-tanfolyam [R=301,NC]

An example: I want to redirect a URL eg: OLD URL: www.immi.hu/hu/3d-latvanytervezes-tanfolyamok/3d-lakberendezo-tanfolyam.html NEW URL: www.immi.hu/3d-latvanytervezes/3d-lakberendezo-tanfolyam Unfortunately nothing seems to happen. 例如:我要重定向URL,例如:旧URL:www.immi.hu/hu/3d-latvanytervezes-tanfolyamok/3d-lakberendezo-tanfolyam.html新URL:www.immi.hu/3d-latvanytervezes/3d- lakberendezo-tanfolyam不幸的是,似乎什么都没有发生。

Can you please help? 你能帮忙吗?

RewriteRule hu/3d-latvanytervezes-tanfolyamok/3d-lakberendezo-tanfolyam.html$ /3d-latvanytervezes/3d-lakberendezo-tanfolyam [R=301,NC]

instead of: 代替:

RewriteRule hu/3d-latvanytervezes-tanfolyamok/3d-lakberendezo-tanfolyam\\\\.html$ /3d-latvanytervezes/3d-lakberendezo-tanfolyam [L,R=301,NC]

dot must be escaped in the rewriterule and have an "L" flag in the 301 redirect. 点必须在重写器中转义,并且在301重定向中具有“ L”标志。

And put that RewriteRule ^(.*) index.php?url=$1 [L,QSA] at the end of the file. 并将RewriteRule ^(.*) index.php?url=$1 [L,QSA]放在文件末尾。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM