Return-Path: Delivered-To: apmail-httpd-users-archive@www.apache.org Received: (qmail 57857 invoked from network); 15 Dec 2008 22:55:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Dec 2008 22:55:02 -0000 Received: (qmail 31514 invoked by uid 500); 15 Dec 2008 22:55:04 -0000 Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 31497 invoked by uid 500); 15 Dec 2008 22:55:04 -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 31486 invoked by uid 99); 15 Dec 2008 22:55:04 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Dec 2008 14:55:04 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of ntwrkd@gmail.com designates 64.233.170.191 as permitted sender) Received: from [64.233.170.191] (HELO rn-out-0910.google.com) (64.233.170.191) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Dec 2008 22:54:49 +0000 Received: by rn-out-0910.google.com with SMTP id k40so2358406rnd.17 for ; Mon, 15 Dec 2008 14:54:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=cVgDvTq2oUT3+kLeQG+cjX1RXciLfTcVXFRsKj5ny+E=; b=pLOZpSBmBT7xAVbsaHYcGuqEmdNcFVK2NfPLKC2bNVpqwuY6nK8ECZNa/d/Us6AbFd PVTkf+s3WWuLYTlemRdDRZVvGM5KShxrECUEFrgrJbhscyyuNLFS6siBbOYBGWc1ZOSY 4CSXIS1hvAXIxMVlqbgdStA6wYcG3laNwLAZY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=HQ9L6E6OMBBDN1bCiq0YywwyyioUyGavctJmTKxqp+9MVOE+7g2HK2stDQ0u0GdF5E FQJ2QpTKJWNpdtt11o/xheauplSgizrJrEK9K2dY/MH+9t/H6S9evrjl9rh6B3Iepcdm G9dexM6n7sLlF/M3KaNi4bV+e2dILs58Ih944= Received: by 10.150.11.6 with SMTP id 6mr6561228ybk.184.1229381668707; Mon, 15 Dec 2008 14:54:28 -0800 (PST) Received: by 10.151.132.8 with HTTP; Mon, 15 Dec 2008 14:54:28 -0800 (PST) Message-ID: Date: Mon, 15 Dec 2008 14:54:28 -0800 From: "Matthew Sacks" To: users@httpd.apache.org Subject: help with rewrites - changing the base path MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Checked: Checked by ClamAV on apache.org i am trying to change the base path of a directory to rewrite to a new location, there are no files in the location, so it is just a cosmetic/seo change. i have some rewrites that are put in place by my hosting provider, and im having some difficulty getting the rewrite to work: here is my .htaccess file: # BEGIN WordPress RewriteEngine On RewriteBase /techblog/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d #RewriteRule ^/techblog /technology-blog [L] RewriteRule . /techblog/index.php [L] # END WordPress --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org