[EMAIL PROTECTED] RewriteRule help

2008-03-01 Thread Shelley
Hi all, Anybody knows what apache RewriteRule to use if I want url: http://www.aaa.comm/user// be rewritten as: http://www.aaa.comm/user/index.php// Any help, thank you very much. -- Cheers, Shelley - The official Use

Re: [EMAIL PROTECTED] RewriteRule help

2008-03-01 Thread J. Peng
On Sat, Mar 1, 2008 at 5:49 PM, Shelley <[EMAIL PROTECTED]> wrote: > Hi all, > > Anybody knows what apache RewriteRule to use if I want url: > http://www.aaa.comm/user// > be rewritten as: > http://www.aaa.comm/user/index.php// > try: RewriteRule ^/(.*)/(.+)/$ /$1/index.php/$2/ Not

Re: [EMAIL PROTECTED] Missing proxy prefix

2008-03-01 Thread Krist van Besien
On Sat, Mar 1, 2008 at 3:52 AM, Andy Andy <[EMAIL PROTECTED]> wrote: > > here's what I have in the httpd.conf. The url I used was > http://apachemachine.com/r/rbs/RBSWebMgr. rbs/RBSWebMgr is the application > sitting on the weblogic machine. When the application appears, all the links > inside th

RE: [EMAIL PROTECTED] RewriteRule help

2008-03-01 Thread Narendra Verma
Hi, This following example may help ... Example: Here I am mapping for http to https. You can use accordingly... Rewrite URL http://www.foobar.com/abc to the URL https://www.foobar.com/abc RewriteEngine on RewriteRule ^/abc/(.*)$ https://%{SERVER_NAME}/abc/$1 [R,L] Thanks Narendra ---

Re: [EMAIL PROTECTED] ErrorDocument not working for HTTP code 413

2008-03-01 Thread Eric Covener
On Fri, Feb 29, 2008 at 10:06 PM, Joshua Slive <[EMAIL PROTECTED]> wrote: > See the paragraph near the bottom of > http://httpd.apache.org/docs/2.2/mod/core.html#errordocument In some cases, a string literal or external redirect can be used when a local file form of ErrorDocument is unusable. I

[EMAIL PROTECTED] Help - Subdomains not working properly

2008-03-01 Thread Ravi
I am trying to get two subdomains setup. I have copied the settings below. The problem is that all requests (even for second subdomain) are being served by first subdomain. e.g. if I type in a URL http://mydomain.com, the file served is from "C:/mydomain/test" and not from "C:/mydomain/www" a

[EMAIL PROTECTED] Scoreboard fills up with G state entries

2008-03-01 Thread Maciej Cencora
Hi, I'm having problems with my apache 2.2.3 server (I use prefork mpm) on Ubuntu 7.04. Basically when I do graceful restart scoreboard isn't cleaned properly. After doing a graceful restart a lot of entries have G state, and that state stays forever. I've tried attaching gdb to one of the pro

[EMAIL PROTECTED] mod_cache windows problem

2008-03-01 Thread Ioannis Cherouvim
Hello I'm trying to get mod_cache and mod_disk_cache to work correctly. Problem summary is that disk cache is unable to overwrite previously cached content (on disk) for the same url. I run httpd 2.2.8 on windows XP. my very basic setup: LogLevel warn CacheRoot D:/tmp2 Docu