vote up 0 vote down star

Hi friends,

I'm working with PHP. I have an .htaccess file like below, and it redirects to homepage rather than 404 error page :/ what can be the problem here? Appreciate helps! thanks a lot!

ErrorDocument 404 /new/err404.html
RewriteEngine On
RewriteBase /new/

RewriteRule ^login.html$ index.php?s=login&a=loginDo [QSA,L]
RewriteRule ^logout.html$ index.php?s=login&a=logoutDo [QSA,L]
RewriteRule ^([^/]*).html$ index.php?s=$1 [QSA,L]
RewriteRule ^members/([^/]*)$ index.php?s=profile&username=$1 [QSA,L]
RewriteRule ^([^/]*)/$ index.php?s=listing&search[cityString]=$1 [QSA,L]
RewriteRule ^([^/]*)/([^/]*)/$ index.php?s=listing&search[neighborhoodString]=$2 [QSA,L]
RewriteRule ^([^/]*)/([^/]*)/([^/]*).html$ index.php?s=details&seo_friendly=$3 [QSA,L]
flag

16% accept rate

2 Answers

vote up 3 vote down

The URL path or your error document /new/err404.html without the path prefix /new/ is just err404.html. And that will be matched by your third rule.

You could extend that rule and exclude such the error documents:

RewriteCond $1 !^err[45][0-9][0-9]$
RewriteRule ^([^/]*)\.html$ index.php?s=$1 [QSA,L]
link|flag
Thanks so much Gumbo. I just changed the /new/err404.html to err404.html . now it doesnt redirect to homepage, but it is not redirecting to 404 page as well. it just writes "err404.html" at the content and url stays as it was mistaken :/ – artmania Oct 14 at 11:19
2  
@artmania: You shouldn’t redirect on errors. Responding with a 404 status code has a different meaning than redirecting. – Gumbo Oct 14 at 11:23
I just edited to ErrorDocument 404 blabla.com/new/err404.html and working fine. but as I have read at forums, it is not good to give redirections with domain... – artmania Oct 14 at 11:25
I second that you shouldn't redirect on 404s. Pages that don't exist shouldn't try to pretend they exist! If nothing else, it's not helpful to SEO and Google advises against it. – Gabriel Hurley Oct 14 at 11:26
I appreciate your kind help! I'm sorry I didn't understand what exactly you mean :/ if page doesnt exist, it just redirecting to err404.html . or do you mean anything about the rest of .htaccess codes? – artmania Oct 14 at 11:30
show 1 more comment
vote up 0 vote down

Why are you trying to use rewrite rules for your 404 error? Why not just use:

 ErrorDocument 404 /new/err404.html

like you have on the first line? Are you wanting the 404 to stay relative to the directory that the user is trying to go to?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.