0
votes
0answers
10 views

Website Redirect's to cgi-sys/defaultwebpage.cgi and 404 not found error

My website domain http://www.ilovesmooch.com/ is redirecting to "cgi-sys/defaultwebpage.cgi" page. Its been going up-down for a week. I've another domain http://www.iluvsmooch.com/, which is parked on ...
0
votes
0answers
18 views

404 Error handling/htaccess for subdomains

I would like to have a 404 error page. This will be in the root direction. The problem I have is that in my .htaccess I have set the following relative path: ErrorDocument 404 /404.php This ...
1
vote
2answers
24 views

Redirection to 404 pages with .htaccess

I have created a folder in my localhost named "example".and I have added 4 files inside that folder. index.php about.php .htaccess 404.php when I type the url http://www.localhost/example/123 ...
1
vote
1answer
36 views

Yii 404 page - override parent htaccess

I'm using the Yii framework at my company site. I have a frontend at domain.com/... and a Yii based app at domain.com/app/.. . We recently added a 404 page to the frontend site, with htaccess's ...
0
votes
0answers
14 views

custom 404 error page issue

i have facing custom 404 page issue my directory are follows index.php 404.php my htaccess code is .. Options +FollowSymLinks RewriteEngine on RewriteRule ([0-9])/ index.php?page=$1 ...
0
votes
0answers
23 views

Googlebot attempting to submit every select option in form creating 118,000 404's in webmaster tools

I have a form on every page of my site that you need to select 4 options from dropdowns before it can be submitted (validated by jquery). However it appears a googlebot is successfully being able to ...
0
votes
0answers
12 views

HTACCESS - Server 404 for “deny from” instead of 403

Is there a way to server 404 instead of 403 when matched with "deny from"? For example: <Files *> order deny,allow deny from 127.0.0.1 </Files> This will normally server a 403. But I ...
0
votes
0answers
25 views

webpage as 404 in google webmaster and link checker, but content is present in webpage

I am having search option in my webpage. When user enters search key, I will check whether search key exists in DB or not, if exists I display the results. In case if there is no result, then I will ...
0
votes
0answers
30 views

Get content from main site categories in Multisite

I have a Multisite installation where subsites can show information from the mainsite to their own site. All the information (categories, posts etc.) gets posted in the mainblog. Users with a subsite ...
0
votes
2answers
105 views

htaccess 404 redirect works for .html extension but not .php extension

I have made a custom 404 page and inserted in my htaccess file: ErrorDocument 404 /404.php And the error direct works properly whenever I test a url with no extension or an .html extension. ...
0
votes
1answer
87 views

.htaccess Add an exception to 404 redirect to particular sub-directory [closed]

The sub-directory is /addon/ it stores all data for my sub-domains a.k.a addon domains. In this sub-directory I also store my primary domains data, my primary domain is website.com RewriteEngine On ...
1
vote
3answers
126 views

.htaccess not redirecting to 404.php instead shows page name [closed]

Am trying to make a custom 404 page for my website and am having .htaccess file in the root directory where am using this rule ErrorDocument 404 404.php //I want to redirect to 404 So when I change ...
0
votes
1answer
96 views

.htaccess - ErrorDocument vs RewriteRule

I want requests for missing files and invalid directories to redirect to a custom 404 error page. I believe this can be accomplished using 2 methods. # redirect invalid requests and missing files ...
0
votes
1answer
32 views

404 customisation

I want to make a custom 404 page. I created a .htaccess containing only this line : ErrorDocument 404 /errors/404.html And the structure of my website is like this : errors 404.html index.php ...
0
votes
3answers
154 views

FollowSymlinks .htaccess Rewrite Rule 404 Error

My real URL is: www.mysite.com/site/index.php I need: www.mysite.com/home.html I write in the .htaccess: Options +FollowSymlinks RewriteEngine On RewriteRule (.*)/home.html$ /site/index.php ...
1
vote
1answer
90 views

Wordpress Permalink change causes frontpage 404

I recently installed the Wordpress SEO plugin and the plugin requested that i changed my Permalink settings. Now, i did this to get nicer looking links containing the postname instead of the post ...
0
votes
2answers
149 views

PHP - Header 404 not triggering htaccess ErrorDocument

This isn't my exact PHP as it's rather complicated, but it's the same general idea. if($_GET['page'] == ".htaccess"){ header("HTTP/1.0 404 Not Found"); } When this happens, Apache doesn't load ...
1
vote
0answers
114 views

wordpress returns a 404 when i call php file with jquery ajax

I have php file for adding email addresses to a newslist the file is in my wp-content/plugins directory my file is called add_subscriber.php i think my htaccess block this file for some reason my ...
0
votes
0answers
50 views

Redirect or Rewrite by .htaccess or is it a server misconfiguration?!

Out of the blue we have lately crawl errors -> Google Webmaster tools pointed us on this <-. Thats not a real problem if it wasn't like following; Error: Googlebot couldn't crawl this URL ...
-2
votes
1answer
41 views

Preserve URL on 404 Error in .htaccess

Currently my 404 page looks like this: example.com/404.php . Is it possible that I could rewrite it to example.com/filethatdoesnotexist.php in .htaccess. I think you could do in php but I would rather ...
0
votes
1answer
68 views

Custom 404 error page is generating a 500 error

For security reasons, I am making it so that all php files generate a 404 error, then using a custom 404 error page, like so: RewriteCond %{THE_REQUEST} \.php[\ /?].*HTTP/ RewriteRule ^.*$ - ...
0
votes
1answer
235 views

404 page being redirected to home page in htaccess

I have this in my htaccess <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ /index.php?url=$1 [QSA,L] </IfModule> The website ...
0
votes
1answer
165 views

htaccess 404 redirect not working

I am trying to setup a custom 404 page for my website using: ErrorDocument 404 /404.html but when I add this, going to domain.com/dslkjflsdkjflskdjf doesn't redirect to the 404 page. Instead, it ...
0
votes
0answers
39 views

How to use a different 404 page within a directory?

I am currently using wordpress, so whenever there's a 404 error it goes to the default template. I want to create ANOTHER 404 template for any 404s that are within my /custom/ directory. For ...
0
votes
1answer
44 views

Paths changed in links on 404 page

BASIC SETUP: WAMP server running locally on my PC (running apache 2.2.22 on localhost) Site is placed under /libelle directory .htaccess placed in that directory and it contains only one line ...
0
votes
0answers
74 views

How to Send URLs with Query Strings to 404 Page Using Htaccess? (1 post)

Using: Wordpress Editing: .htaccess Is it possible to send URLs with specific query strings (spam) to the default WordPress 404 page, using .htaccess? I currently have such parameters 301 ...
0
votes
1answer
223 views

.htaccess 404 redirect not working correctly

I recently transferred my website to another domain. I have the old domain redirecting old links to the splash page. Although because I used wordpress the previous links such as - ...
0
votes
1answer
522 views

.htaccess file can't find 404 ErrorDocument

The .htaccess file I have is unable to find my 404.html document in a sub-folder called "error". The line in particular is: ErrorDocument 404 /error/404.html However, if I place 404.html in the same ...
0
votes
1answer
85 views

.htaccess redirect to different domain only if URL is invalid

I am trying to create a .htaccess rule to redirect users from one domain to the other, but this should happen only if the original URL does not exist. For example: www.domain.com/100 to ...
0
votes
0answers
566 views

404 component not found - on urls with 'index.php' - Joomla

I have a Joomla! 1.5.22 site that works fine on the old server. On the new server (HostGator) there is a problem. All the links in the site are working fine but if I press a link that includes ...
0
votes
2answers
81 views

Need to redirect 404 to the home page.

I only have one 404 left and have no idea how to fix it. So I need to redirect that single page to the home page. I need ...
0
votes
0answers
108 views

404 - how to tell if the site has 404 redirection on .htaccess in PHP?

I'm trying to see if the URL I enter has a proper 404 page (set up in .htaccess) or not. For example, I have set up a 404 redirection on my site, all working fine. If i go to ...
3
votes
2answers
84 views

Getting 301 instead of 404 when adding trailing slash to URL

I've been working for hours in this and can't find information about it. Well yes, there is information, but I can only find separate solutions that don't work put toguether. I'm trying to start from ...
0
votes
1answer
83 views

Custom 404 page

I'm using html5 Boilerplate that has a 404.html page but if I navigate to a wrong URL it doesn't display. The browser shows the default 404 page. htaccess file has already this line: ErrorDocument ...
1
vote
1answer
177 views

URL with encoded slashes goes to 404

I use user-provided content to generate URLs. One of my URL had for title Kikar Habusiness - émission du 2/12/12, which converted to the URL /url/Kikar+Habusiness+-+émission+du+2%2F12%2F12. It goes ...
0
votes
1answer
269 views

Slim aways show 404 error page

I'm trying to test Slim on my Mac under XAMPP or native Apache Server from MAC OS, but under anyone works. Follow the code: <? require 'Slim/Slim.php'; \Slim\Slim::registerAutoloader(); $app = ...
0
votes
1answer
82 views

Display 404 error when a certain URL is accessed using a specific sub-domain

I have two sub-domains that point to the exact same files. I use server-side code to control the styling/images. I want a particular page to be accessible to only one of the sub-domains. How can I ...
0
votes
1answer
256 views

.htaccess show 404 page with rewrite?

I have a .htaccess file that essentially "removes" the file extension in the web browser (from example.php to example). Here's the code: RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f ...
2
votes
0answers
299 views

.htaccess redirect of index.php is breaking 404 pages

I have recently setup a index.php redirect through .htaccess. The idea here is to negate duplicate content issue that crops up when a site has both an index.php and / (homapage) getting indexed. ...
0
votes
4answers
101 views

Mod-Rewrite rules are breaking 404 routing

I am using the following mod-rewrite in my .htaccess file: RewriteRule ^$ pages/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ pages/$1 [L] The ...
1
vote
1answer
116 views

404 FIle not found

I'm using amazon EC2, bitnami LAMP AMI. I recently added a folder so i can test another website out eg www.website.com/foldername/ I did chmod 777 to that folder so i can access it but the problem is ...
0
votes
0answers
177 views

Return 404 server response for a specific URL via htaccess (Wordpress site)

I have a Wordpress site at example.com with permalinks activated. I have some spammer doing negative SEO to one of my inner pages at http://www.example.com/my-inner-page. I will change the location ...
0
votes
1answer
69 views

htaccess redirect exits specific file

I store file like this products/back.jpg products/thumbnail.jpg products/items/1/back.jpg products/items/1/thumbnail.jpg products/items/2/back.jpg products/items/2/thumbnail.jpg ...
0
votes
2answers
58 views

I don't know where to start…htaccess file and probably Apache? [closed]

I have no idea what any of this stuff means. I just know that GoDaddy tech support said it's a problem with .htaccess, WordPress and Apache. Briefly, when I remove the .htaccess file from the root ...
0
votes
1answer
308 views

Codeigniter issue - remove trailing slashes, redirect other non-permitted URI characters to a 404 page

I have recently added the following to .htaccess to remove trailing slashes: RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)/$ $1 [L,R=301] I also extend CI_URI to remove non-permitted URI ...
0
votes
1answer
85 views

Wordpress blog articles error 404 [closed]

inside the blog of two wordpress sites http://www.winegood.it/article/fenomenolofia-del-vino-sfuso/ http://www.ilvinomeloimbottiglioio.it/article/fenomenolofia-del-vino-sfuso/ you can't read the ...
0
votes
1answer
205 views

404 Page redirect to custom pages

for e.g i have the following page gives 404 error http://www.example.com/requirements/about-tn/about-us.html I want the above page to the following url only if the above page is returning 404 error ...
2
votes
2answers
9k views

Getting 404 Not Found error while trying to use ErrorDocument

I know this thread has been talked a lot on the web and here, and I tried almost all the methods, but still I'm having the same problem. This is my url on my local server ( MAMP ) ...
0
votes
1answer
45 views

Specific URL error redirect to proper URL

I've search the DB and found similar solutions to the following but they don't seem to be working. Here's the issue: We thought we were being clever by adding a QR code to our business cards. A smart ...
0
votes
1answer
94 views

htaccess redirect in Yii

I am using Yii framework, and I have a problem with redirect. I want to redirect from a old url which apears in google search to my homepage. But the redirect does not get effected and I get the 404 ...

1 2 3 4