This is a discussion on Generic redirect question. within the Apache Web Server forums, part of the Web Server and Related Forums category; Redirect for specific E*.html pages to a cgi script (passing * values to it). Anyone? Thanks in advance....
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Eventually got it figured out; here it is if anyone needs anything like
this: RewriteEngine on RewriteRule ^E([A-Za-z0-9]+).html$ http://mydomain.com/cgi-bin/cs/script.cgi?id=$1 [R] BDR wrote: > Redirect for specific E*.html pages to a cgi script (passing * values to > it). > > Anyone? > Thanks in advance. > |