Hi,

why don't you have your PHP script ViewOffer.php do the redirection? Like:
<?php

if (!isset($_REQUEST['id'])) {
 header ("Location: Offers.php");
}

Regards
Sascha

----- Original Message ----- From: "Davi Leal" <[EMAIL PROTECTED]>
To: <users@httpd.apache.org>
Sent: Saturday, May 05, 2007 11:04 AM
Subject: [EMAIL PROTECTED] RewriteEngine


Hi,

How to do this:

   RewriteRule ^/offers?id=(.*) /ViewOffer.php?OfferId=$1
   RewriteRule ^/offers(.*)     /Offers.php$1


That is to say:
 if "id=" is present  go to  ViewOffer.php
 else                 go to  Offers.php


Best regards,
Davi

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





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