bryanmoneey
Regular Member
- Mar 7, 2011
- 278
- 67
There have been many 404 errors showing on my browser and It's very annoying. I have searched Google and it's kinda too much technical for me. Someone have solutions for this??
Thanks for replies. It happens with random sites during browsing. Same for firefox and Chrome. For example, I always use http://ubersuggest.org/ and at some point I can't search and it shows that it uses Google API etc etc and error 404. I'm also curious because I do a lot of searches, signups, and traffic exchange site bots and I use my normal IP address.
I ran into this similar problem about a year ago. It drove me bat shit crazy for like 2 months. If I hit the site over and over the page would come up. At first I thought it was some websites but then noticed it was random and without rhyme or reason. Might browse for hours without it and then 404s started appearing over and over and then randomly disappear.
What it turned out to be was a failing router. I had an expensive Linksys VPN router and it worked great for about 3 years and then started this shit. I replaced the router and problem solved. I had the identical router at the home office and it worked fine for about 4 years and started this same shit. Replaced it and 404s went in the trash with the old routers.
I'd try swapping out the router.
There have been many 404 errors showing on my browser and It's very annoying. I have searched Google and it's kinda too much technical for me. Someone have solutions for this??
Try installing 404 to start plug-in if you are using Wordpress.
You may also need to edit your HTACESS in your c-panel
It is a hidden file, so you will need to select show hidden files before editing as follows:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Try installing 404 to start plug-in if you are using Wordpress.
You may also need to edit your HTACESS in your c-panel
It is a hidden file, so you will need to select show hidden files before editing as follows:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress