On Thu, Oct 2, 2008 at 4:27 AM, howard chen <[EMAIL PROTECTED]> wrote:
> Hello,
>
> Is it possible to do the following, just using sort of rewrite rules
> in httpd.conf,
>
> E.g. http://www.example.com/foo
>
> ALGO:
>
> If a file foo.html exist
> rewrite to target.html
> Else
> 404 not found
>
>
> The foo is just a dynamic variables...
Something like this:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule .* target.html
The "404 not found" will happen automatically when the file doesn't exist.
Krist
--
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Bremgarten b. Bern, Switzerland
--
A: It reverses the normal flow of conversation.
Q: What's wrong with top-posting?
A: Top-posting.
Q: What's the biggest scourge on plain text email discussions?
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
" from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]