Google seems not to be indexing my site, http://communitycommitment.net/index.php . I am a newbie to this and I was wondering if anyone can diagnose my problem? The site has been up for about a month. I've submitted the URL to Google several times.
When I try to set up Google site search ( http://services.google.com/cobrand/free_select ) Google gives me the following message: "There are no pages in our index for "communitycommitment.net. We cannot perform SiteSearch on this domain(s).".
I have Clean URLs enabled.
My webhost is cclhosting.com. Mod_rewrite is running according to the web host.
My htaccess says the following:
RewriteEngine on
# Modify the RewriteBase if you are using Drupal in a subdirectory and the
# rewrite rules are not working properly:
RewriteBase /
......
# Rewrite URLs of the form 'index.php?q=x':
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
When I go to a story, the URL in the browser window looks like this: "http://communitycommitment.net/story/118".
I have URL aliasing with the following code:
function conf_url_rewrite($path, $mode = 'incoming') {
if ($mode == 'incoming') { // URL coming from a client
return preg_replace('!^story/(\d+)$!', 'node/view/\1', $path);
}
else { // URL going out to a client