Forum Moderators: phranque
So I took another hack at it and now I found a way to get what I want done.
Sample Code
RewriteEngine on
RewriteCond %{REQUEST_FILENAME}!-s
RewriteRule ^page\.html$ page.cgi [T=application/x-httpd-cgi,L]
Notes:
1: RewriteCond %{REQUEST_FILENAME}!-s (if requested file is not found)
2: RewriteRule regex path-url [flags]
MoreInfo:
Url RewriteGuide [httpd.apache.org]
mod_rewrite, RewriteRule [httpd.apache.org]