View Full Version : Google Sitemap Verification Page


JONES
09-12-2006, 08:49 PM
Hi

Can anybody help me with uploading google's sitemap verification pahe. My site is in php and are using mod rewrite. I'm uploading the verification page in httpdocs but when i check it like
http://www. mysitename . com/googleverificationpagename . html
i get a 404 status.

Kindly help me with where I'm being wrong.

Regards

Paz
09-12-2006, 09:59 PM
Hi,

Your software isn't generating somepage.html instead of SomePage.html is it? Urls on Unix servers are case sensitive.

Cheers,
Paz.

ixpleo
09-15-2006, 10:46 AM
Add this rewrite condition just before your rule:

RewriteCond %{REQUEST_FILENAME} !-f

It ensures that it will only apply your rewrite rule if the address being rewritten isn't a real file.