On 6/1/05, Igor Yu. Zhbanov <[EMAIL PROTECTED]> wrote:
> Hello!
> 
> // Apache/2.0.53 (Unix) PHP/4.3.10
> 
> I am using .htaccess to set handler for missing documents. They are not really
> missing. It is a trick to have beautiful URLs when generating site content
> from a database.

> Is there a way to tell Apache from error document that everything is alright
> and I don't want a record in error log?

You can adjust LogLevel, but that probably isn't smart.

If you can express the set of URLs that you want covered by this in a
regular expression, then you should use a technique like
AliasMatch ^/path/.* /home/bsg/public_html/e/found.php
Otherwise, mod_rewrite provides various methods for doing stuff like
this.  The rewrite guide even has an example for testing if a file
exists.

Joshua.

---------------------------------------------------------------------
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]

Reply via email to