I am hosting multiple domains on a single hosting account. One of the domains is using Wordpress and in a subdirectory (/foo), while the other is in the main directory. I have successfully changed the root .htaccess file to rewrite the main page of the Wordpress site to the correct domain, but the subsequent pages for the Wordpress site are not rewriting.
Example: foo.com (Wordpress site)
bar.com (other site in root)
bar.com/foo is being shown correctly as foo.com....however bar.com/foo/page1 is not rewriting and is being shown as is (instead of foo.com/page1). I am looking for a rewrite and not a redirect. The .htaccess code I'm using in the root folder is below. I haven't changed the default .htaccess file created by Wordpress in bar.com/foo. Am I missing something? Any help is much appreciated.
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^/foo/
RewriteCond %{HTTP_HOST} ^(www\.)?foo\.
RewriteRule ^(.*)$ foo/$1 [L]
bar.com/foo/page1, why would it show as anything else? – Jon Lin Jul 3 '12 at 4:52