Hello, I would like to redirect all not found pages to some custom error page , but the mod_rewrite does not allow that, is there a way i can have custom error page instead of getting redirected to main site ?? I would like rewrite to function still. Regards
Found the solution. Just replace RewriteRule .* index.php [QSA,L] Code (markup): With RewriteRule ^(.+) http://www.somedomain/404.htm Code (markup): Enjoy
Try it will not you can view it on http://www.sbclansite.com/boguspage.php and than check http://www.sbclansite.com/ It helps reducing load on your site cause now error pages do not need sql connections. regards