Return-Path: Delivered-To: apmail-httpd-users-archive@www.apache.org Received: (qmail 38601 invoked from network); 20 Jan 2010 11:14:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 20 Jan 2010 11:14:35 -0000 Received: (qmail 69775 invoked by uid 500); 20 Jan 2010 11:14:32 -0000 Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 69732 invoked by uid 500); 20 Jan 2010 11:14:32 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 69716 invoked by uid 99); 20 Jan 2010 11:14:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jan 2010 11:14:32 +0000 X-ASF-Spam-Status: No, hits=3.5 required=10.0 tests=SPF_PASS,URIBL_BLACK X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: local policy) Received: from [78.46.87.206] (HELO Kolkata.infoservices.in) (78.46.87.206) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Jan 2010 11:14:22 +0000 Received: from infoservices.in (unknown [115.187.38.16]) by Kolkata.infoservices.in (Postfix) with ESMTPSA id 50F728C16; Wed, 20 Jan 2010 12:41:15 +0100 (CET) Date: Wed, 20 Jan 2010 16:36:11 +0530 From: "J. Bakshi" To: users@httpd.apache.org Cc: krist.vanbesien@gmail.com Message-ID: <20100120163611.43a7361a@infoservices.in> In-Reply-To: <6ed6382b1001200119l7de4c938xe802a737e946e2d7@mail.gmail.com> References: <20100119215819.4014b4c4@infoservices.in> <6ed6382b1001200119l7de4c938xe802a737e946e2d7@mail.gmail.com> X-Mailer: Claws Mail 3.7.3 (GTK+ 2.18.3; i486-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [users@httpd] speaking url is not working inside subfolder On Wed, 20 Jan 2010 10:19:24 +0100 Krist van Besien wrote: > On Tue, Jan 19, 2010 at 5:28 PM, J. Bakshi > wrote: > > > The .htccess successfully redirects the concerned domain into the > > sub-folder (TYPO3) . But the problem is with speaking url. Clicking > > on any links always and always goes to the very first page. > > Waht is a "speaking url"? > Could it be that your problem simply is that Typo3 is unaware it > exists in a subfolder, and thus creates URLs that do not start with > TYPO3? > > Krist > "speaking url" or "real url" is human understandable url. Say http://mydomain.com/?index.php=43 will be http://mydomain.com/homepage.html Your point is relevant as typo3 speaking-url is working well from public_html but not from public_html/TYPO3 folder. .htaccess is already there in public_html to handle the redirection, then what else do I need to fix it ? My .htacces is ` ` ` Options +FollowSymLinks RewriteEngine on # domain for typo3 RewriteCond %{HTTP_HOST} ^(www.)domain.in$ RewriteCond %{REQUEST_URI} !^/TYPO3/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule ^(.*)$ /TYPO3/$1 RewriteCond %{HTTP_HOST} ^(www.)domain.in$ RewriteRule ^(/)?$ TYPO3/index.php [L] ` ` ` Thanks --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org " from the digest: users-digest-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org