PDA

View Full Version : How to fix the 301 and 302 errors in website?



regainhairsolut
02-12-2015, 08:48 AM
Some the the pages has containing broken links and 301 errors.
So i need to fix the errors.
How to fix the 301 and 302 errors in website?

dennis123
02-13-2015, 01:13 AM
You can use .htaccess code to fix the 301 and 302 errors

HTTP/1.1 301 Moved Permanently
Location: http://www.example.org/
Content-Type: text/html
Content-Length: 174

<html>
<head>
<title>Moved</title>
</head>
<body>
<h1>Moved</h1>
<p>This page has moved to <a href="http://www.example.org/">http://www.example.org/</a>.</p>
</body>
</html>

rousellwall
02-13-2015, 11:00 PM
You can use .htaccess code to fix the 301 and 302 errors

HTTP/1.1 301 Moved Permanently
Location: http://www.example.org/
Content-Type: text/html
Content-Length: 174

<html>
<head>
<title>Moved</title>
</head>
<body>
<h1>Moved</h1>
<p>This page has moved to <a href="http://www.example.org/">http://www.example.org/</a>.</p>
</body>
</html>

Really Wonderful answer! Thanks for sharing.