Hello List,
I have an issue to connect SSL enabled site to Oracle database server. Let
me explain you with an example here.
My website name is abc.com and it has another name as well say xyz.com and
that is listed in additional DNS name field of certificates. Primary name
is abc.com only.
Now cl
On 24/02/2013 2:29 PM, "Coughlin, Michael J"
wrote:
>
> I have a RewriteCond issue:
>
>
>
> I have a URI: /II/anydirectory/anyfile
>
>
>
> I can get an exact match:
>
>
>
> RewriteCond %{REQUEST_URI} ^/II/([^/]+)/(.+)$
>
>
>
> So if I want the /II part to be optional in the match:
>
> RewriteCond
I have a RewriteCond issue:
I have a URI: /II/anydirectory/anyfile
I can get an exact match:
RewriteCond %{REQUEST_URI} ^/II/([^/]+)/(.+)$
So if I want the /II part to be optional in the match:
RewriteCond %{REQUEST_URI} ^(/II)?/([^/]+)/(.+)$
Now any thing can get through, since the