Re: [PHP] Not found regex

2008-08-04 Thread Shawn McKenzie
Boyd, Todd M. wrote: -Original Message- From: Shawn McKenzie [mailto:[EMAIL PROTECTED] Sent: Monday, August 04, 2008 10:33 AM To: php-general@lists.php.net Subject: Re: [PHP] Not found regex Manoj Singh wrote: Hi All, Thanks for your replies. Actually i am placing this regex in

RE: [PHP] Not found regex

2008-08-04 Thread Boyd, Todd M.
> -Original Message- > From: Shawn McKenzie [mailto:[EMAIL PROTECTED] > Sent: Monday, August 04, 2008 10:33 AM > To: php-general@lists.php.net > Subject: Re: [PHP] Not found regex > > Manoj Singh wrote: > > Hi All, > > Thanks for your replies. > >

Re: [PHP] Not found regex

2008-08-04 Thread Shawn McKenzie
Manoj Singh wrote: Hi All, Thanks for your replies. Actually i am placing this regex in .htaccess file. Here i have to redirect all the request to https if it is not for ogg file. The complete code is: RewriteCond %{HTTPS} off RewriteCond %{REQUEST_URI} ^.+\.ogg$ //Need some tweaking here. I kn

Re: [PHP] Not found regex

2008-08-04 Thread Manoj Singh
Hi All, Thanks for your replies. Actually i am placing this regex in .htaccess file. Here i have to redirect all the request to https if it is not for ogg file. The complete code is: RewriteCond %{HTTPS} off RewriteCond %{REQUEST_URI} ^.+\.ogg$ //Need some tweaking here. I know this code works ju

Re: [PHP] Not found regex

2008-08-04 Thread Yeti
On Mon, Aug 4, 2008 at 4:44 PM, Manoj Singh <[EMAIL PROTECTED]> wrote: > Hello All, > I have to create the regular expression to allow all the file extensions > except the specified extension. > > Suppose I want to allow extensions with php, so the regex is: ^.+\.php$ > > But here i need the regex

RE: [PHP] Not found regex

2008-08-04 Thread Wei, Alice J.
From: Manoj Singh [EMAIL PROTECTED] Sent: Monday, August 04, 2008 10:44 AM To: php-general@lists.php.net Subject: [PHP] Not found regex Hello All, I have to create the regular expression to allow all the file extensions except the specified extension. Suppose I want to allow exte