If you have control of the apache configuration, please consider just changing where the sitename points to. That's a much more obvious way to accomplish this. Point it into the subdirectory. Doing redirects in the htaccess is not really the place to do it.
On debian/ubuntu, this would usually be done in the /etc/apache2/sites-available. There are similar ways of doing it anywhere Apache is installed.
-Randy
Why do you need a redirect if your document root points into that folder (bv) already?On Mon, Nov 15, 2010 at 10:23 AM, Lynn Stott (Stott Design) <lynn@stottdesign.com> wrote:
Thanks, but using document root gives me a 505 Internal server error.Let me explain better:I've just inherited this site, so I'm not sure why it was set up this way, but the full Drupal site is in the folder: /bv (DocumentRoot /home/mysite/public_html/bv). I currently have the following rewrite in the .htaccess file within the /bv folderRewriteCond %{HTTP_HOST} ^mysite\.com$ [NC]RewriteRule ^(.*)$ http://www. mysite.com/bv/$1 [L,R=301]so when I browse to the home page, www.mysite.com, I'm redirected to www.mysite.com/bv ORmysite.com I'm redirected to www.mysite.com/bvBUT, when I browse to any internal pages without the /bv, I get a page not found. For example:www.mysite.com/contact will not redirect to www.mysite.com/bv/contactIs there a wildcard redirect so any internal page is redirected to include the /bv ?On Nov 15, 2010, at 8:31 AM, Ryan LeTulle wrote:I may not totally understand your question but why don't you set your DocumentRoot to point into that folder?DocumentRoot "/path/to/bv"Ryan LeTulle
bayousoft.com
twitter.com/bayousoft
On Mon, Nov 15, 2010 at 9:23 AM, Lynn Stott (Stott Design) <lynn@stottdesign.com> wrote:
I have a Drupal site installed at /bv, so home page is www.mysite.com/bvI want to be sure when anyone tries www.mysite.com/anypage, they get redirected to www.mysite.com/bv/anypageIs this possible via htaccess?I currently have this rewrite to be sure the www is included (needed for SSL):RewriteCond %{HTTP_HOST} ^mysite\.com$ [NC]RewriteRule ^(.*)$ http://www. mysite.com/bv/$1 [L,R=301]Thanks for any help.Lynn