0

Is it possible to have an erroneous URL remain in the address bar while redirecting the user to a URL within my domain? I want www.domain.com/forum to be the actual site being served in all 404 circumstances but I don't want the referring URL to be rewritten (other than the domain portion, which is being done on the registrar level).

This is my current .htaccess

RewriteEngine On

RedirectMatch permanent ^/$ http://www.domain.com/forum/

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* http://www.domain.com/forum/ [L,R]
Matthew S
  • 189
  • 1
  • 2
  • 8
  • Do you actually mean an [`ErrorDocument`](http://httpd.apache.org/docs/2.2/mod/core.html#errordocument) directive? – Alvin Wong Sep 02 '12 at 03:47

1 Answers1

1

You want to send 404 errors up to your application? Easy enough. You need to specify an existing file, though. For example:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /forum/index.php [L]
Michael Hampton
  • 244,070
  • 43
  • 506
  • 972