Dealing with Not Found errors
-
Hi,
I have a problem with Google Webmaster, it reported that I have many errors 404 Not Found.
I have detected and found the links are coming from my site, I have fixed them and submit a new sitemap to google again. Then, I wait a few days, google still report errors 404 Not found same as before.I don't know why? Please help!
-
That is why I 301 redirect all of my 404 banks simply because Google has already indexed and archived them as I mentioned. So you need to 301 redirect the links I hope this helps sincerely, Thomas
-
I have marked as fix many times, and then the errors still occur. When I check my sitemap and did not see the not found links which are listed in the tab linked from sitempap.
-
considering that your website has both index and archiving on and Google obviously has indexed and archived your website I would strongly suggest you eliminate this is a obstacle in the future and simply 301 redirected the correct path
http://www.vietnamvisacorp.com/tips/6.html
If using Nginx like I think you are simply implement this in your htaccess
nginx configuration location /tips/6.html { rewrite ^(.*)$ http://www.vietnamvisacorp.com/tips.html redirect; }
I used this tool to accomplish this goal http://winginx.com/htaccess you can do the exact same thing using this and it will help you if you already understand how 301 redirect for Apache
http://www.anilcetin.com/convert-apache-htaccess-to-nginx/
if you want to be certain to get the code right which I would I would use an Apache generator then put it into the Nginx generator and properly 301 redirect your 404
simply use the tool below to create the and copy and paste that redirect into one of the 2 tools I have given you above.
-
Hello John & Dennis,
if it is completely gone and there's no 404 you can check this by going to the Google Webmaster tools panel and instead of selecting ignore or anything like that hit fetch as a Google bot this will tell you if the link is still a real link or not. You do not have to wait a set amount of time to find out if one link is in fact okay.
I would be hard-pressed to imagine that it is worth anything meaning it has back links pointing to it however if it does you will want to use open site Explorer to check the link prior to ignoring it or marking it as fixed.
The rule I use is if it shows up as a 404 I 301 redirect it that way you never lose back links. It's a little more complicated using Nginx but in my opinion it's worth the complication as the improved speed and ability to take incredible amount of traffic make it really worth it.
What Dennis has stated is true if the link is worthless And of course does not exist Anywhere on a webpage.
I hope this has been of help.
Thomas
-
here is the information I retrieved regarding how your website is made website
https://builtwith.com/?http%3A%2F%2Fwww.vietnamvisacorp.com%2Ftips.html
http://www.vietnamvisacorp.com/tips.html
http://wiki.nginx.org/LikeApache-htaccess
so let's say you wanted to make it back into the original URL I have above
to fix it and Apache
Permanent URL redirect - generated by www.rapidtables.com
Redirect 301 /tips/6.html http://www.vietnamvisacorp.com/tips.html
now to fix it in Nginx
Use
or
http://www.anilcetin.com/convert-apache-htaccess-to-nginx/
nginx configuration location /tips/6.html { rewrite ^(.*)$ http://www.vietnamvisacorp.com/tips.html redirect; }
http://www.vbseo.com/f77/converting-htaccess-301-redirect-nginx-49834/
-
Hi John
Mark it as fixed in webmaster tools
After that, just leave it alone for a week or so. Once your site is recrawled, youll see that it's not there anymore (as long as it's really fixed)
-
this is not a problem you simply have to take these links that you're finding is 404's and 301 redirect them to relevant pages on your website. What I mean is do not simply take them and put them all to the home page. Spread them around if they have no direct use. I've noticed you are using Nginx along with Apache where you might be just using Nginx in order to make the 301 redirects correctly with engine acts I'm going to need to grab a couple links for you. I will be right back.
sincerely,
Thomas
-
For an example about this problem:
Google webmmaster report Not found link: www.vietnamvisa...com/tips/6.html (this is link before update).
and in the tab Linked from: http://www.vietnamvisacorp.com/tips.html, but in this page did not include /tips/6.html
Got a burning SEO question?
Subscribe to Moz Pro to gain full access to Q&A, answer questions, and ask your own.
Browse Questions
Explore more categories
-
Moz Tools
Chat with the community about the Moz tools.
-
SEO Tactics
Discuss the SEO process with fellow marketers
-
Community
Discuss industry events, jobs, and news!
-
Digital Marketing
Chat about tactics outside of SEO
-
Research & Trends
Dive into research and trends in the search industry.
-
Support
Connect on product support and feature requests.
Related Questions
-
Website server errors
I launched a new website at www.cheaptubes.com and had recovered my search engine rankings as well after penguin & panda devestation. I'm was continuing to improve the site Sept 26th by adding caching of images and W3 cache but moz analytics is now saying I went from 288 medium issues to over 600 and i see the warning "45% of site pages served 302 redirects during the last crawl". I'm not sure how to fix this? I'm on WP using Yoast SEO so all the 301's I did are 301's not 302's. I do have SSL, could it be Http vs Https? I've asked this question before and two very nice people replied with suggestions which I tried to implement but couldn't, i got the WP white screen of death several times. They suggested the code below. Does anyone know how to implement this code or some other way to reduce the errors I'm getting? I've asked this at stackoverflow with no responses. "you have a lot of http & https issues so you should fix these with a bit of .htaccess code, as below. RewriteEngine On
On-Page Optimization | | cheaptubes
RewriteCond %{HTTPS} !=on
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L] You also have some non-www to www issues. You can fix these in .htaccess at the same time... RewriteCond %{HTTP_HOST} !^www.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] You should find this fixes a lot of your issues. Also check in your Wordpress general settings that the site is set to www.cheaptubes.com for both instances." When I tried to do as they suggested it gave me an internal server error. Please see the code below from .htaccess and the server error. I took it out for now. BEGIN WordPress <ifmodule mod_rewrite.c="">RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^.$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]
RewriteCond %{HTTP_HOST} !^www. RewriteRule ^(.)$ http://www.%{HTTP_HOST}/$1 [R=301,L]</ifmodule> END WordPress Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, webmaster@cheaptubes.com and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log. Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.0 -
Help for 404 error
Is it ok to use hash(#) in URL as right now it is showing 404 error while checking broken links using check my link chrome extension. E.g. http://instafrsh.com/index.php#aboutUs If not, Please suggest how to resolve this issue
On-Page Optimization | | Obbserv0 -
Wordpress sitemap url problem causing WMT errors
The following types of links are appearing in my webmaster tools crawl errors report under 'other'. I've noticed they are in my sitemaps ( I run wordpress and use a plugin called Google XML sitemaps). How do I get rid of this error? http://www.musicliveuk.com/bands/postname%/
On-Page Optimization | | SamCUK0 -
Internal and Link Juice Analysis - Too Many Links Error
Howdy! I have an analysis question related to internal links/link juice. Here is the general link set up of our site: 1. All Site Pages (Including Home Page): We have drop down "mega" menus in the header of everypage linking to various sub-categories on the site. So, because of this, in our header, we have a few hundred links to various pages on our site and these show up on every page of the site. 2. Product Pages: Header pages as mentioned above, but on top of that, we list out the keywords for that particular product and each keyword is linked back to our search results pages for that particular keyword. In General Moz is telling us we are having between 200-300 links on each product page. Currently, our Search Results pages are ranking higher and showing up in search more than our actual product pages. So, based on the above info, here are some thoughts: 1. Should we ajax in the Header links so that they aren't showing up for the search engines? Or, should we ajax them in only on all pages that are not the Home Page? 2. Should we get rid of the keyword links back to the Search Results pages that are on the product pages? What effect would these changes "actually" have? Does this just improve crawling? Or are there other positive results that would come of changes like these? We have hundreds of thousands of products, so if we were to make changes like these, could we experience negative results? Thanks for your help! Craig
On-Page Optimization | | TheCraig0 -
High Volume Duplicate Title and Content Errors: Scale of 1-10 How bad is this?
I have 15k pages and 1.5K have duplicate title and content errors. the reason is I have a ring parent page with child pages for each of the size variations. On a scale of 1-10 how big an issue is this and does it need fixing?
On-Page Optimization | | Tippman0 -
WordPress Crawl Errors
I recently added wordpress to my site and get the following errors: Duplicate Page Content http://agrimapper.com/wordpress/ http://agrimapper.com/wordpress/index.php How do I define the canonical page on a .php. 4XX (Client Error) http://agrimapper.com/wordpress/index.phpindex.php Any ideas where the 4XX error comes from. Thanks.
On-Page Optimization | | MSSBConsulting0 -
Why that many Crawl Diagnostics errors, false?
Hi, my fist question, trying to understand how seomoz pro works. I have about 680 crawl erros, but when I check the details, I found this: 1. many 403 errors ( I think from all links). > I have tested my web site (telcelsolcom.com) in other tools and all says OK 200 response. 2. many title and content duplicates, but the system is showing as duplicated pages with and without the www. > I have a 301 redirect from non www to with www and it is working ok. Do I have false errors? What am I doing wrong? thanks.
On-Page Optimization | | hugoaf0 -
20 x '400' errors in site but URLs work fine in browser...
Hi, I have a new client set-up in SEOmoz and the crawl completed this morning... I am picking up 20 x '400' errors, but the pages listed in the crawl report load fine... any ideas? example - http://www.morethansport.co.uk/products?sortDirection=descending&sortField=Title&category=women-sports clothing
On-Page Optimization | | Switch_Digital0