Redirect 301
-
Hi,
I `m redirecting some pages in htaccess
The first 15 pages that i redirected it worked. But the last 3 dont work, and i cant figure it out why it is not working.
Redirect 301 /analyseverktoy/ /webanalyse
Redirect 301 /index.php/ledige-stillinger/ /
Redirect 301 /?page_id=352/ /Anu suggestions?
-
It doesn't work because you are not doing it correctly
The Redirect command has 3 parameters:
1. The redirect type (in your case 301)
2. The location of the file/directory you want redirected relative to the root of your site
3. the full URL of the location you want that request sent toYou are mistaken the third parameter, because you are not putting there the full path. You should put something like this:
Redirect 301 /analyseverktoy/ http://www.yoursite.com/webanalyse
Redirect 301 /index.php/ledige-stillinger/ http://www.yoursite.com/
Redirect 301 /?page_id=352/ http://www.yoursite.com/ -
That's exactly how I do mine. The full URL is what you are missing. You need the http:// in it.
-
Thanx, one of them is working...but the other ones stil dont work....
Working: Redirect 301 /index.php/ledige-stillinger/ http://mysite.com/
Not Working:
Redirect 301 /?page_id=352/ http://mysite.com/
Redirect 301 /googleanalitycskurs/ http://mysite.com/googleanalyticskurs
Redirect 301 /sokemotoroptimalisering-tips/ http://mysite.com/sokemotoroptimaliseringtips/Thank you for the advice.
-
Any suggestions why it does not work or how we can fiks it?
-
If you defined the redirect rules correctly and some works and some don't check if these new defined rules don't conflict with others previously declared. What errors do you get?
-
I get a 404. page not found.
The strange part is that some are working and the other ones are not.
-
And when you look at the final URLs in the address bar of your browser, do these URLs that return 404 errors correspond to the URLs you set up with the Redirect rule?
Usually when your redirects are messed up you get 500 Internal Server errors, not 404 errors.
Maybe the problem is not in how you defined the redirects in the .htaccess file, but you are choosing the incorrect URLs to redirect to.