[users@httpd] Certificate mismatch error

2013-02-23 Thread Kumar Bijayant
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

Re: [users@httpd] rewritecond problem

2013-02-23 Thread Igor Cicimov
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

[users@httpd] rewritecond problem

2013-02-23 Thread Coughlin, Michael J
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