Forum Moderators: phranque
Can someone enlighten me as to what might preventing Google from indexing this so that a search for the name of the website represented by the top level myvirtualdomain.org page will come up with a result.
The entry for the virtual host is like this:
<VirtualHost *:80>
DocumentRoot /www/home/mydirectory
ServerName myvirtualdomain.org
ServerAlias www.myvirtualdomain.org
Redirect 301 [mydomain.com...] [myvirtualdomain.org...]
</VirtualHost>
RewriteEngine On
RewriteRule ^/home/mydirectory/(.*)$ [myvirtualdomain.org...] [r=301,L]
Shouldn't one of the results of doing a URL Rewrite be that in the browser address location bar, when I enter
[mydomain...] it should result in [myvirtualdomain.org...] ? It does go to the right page, but the URL does not show as being rewritten. Am I missing something?