extension for AA SEO Verify
January 17th, 2009
Comments off
After writing previous post about mod_rewrite I have discovered that google webmaster tools stoped veryfing my domain www.niczsoft.com. After investigation I sadly have discovered that Ask Apache Search Engine Verify plugin neither Add Meta Tags can display meta tags on my page. short reading allowed me to find the right place to correct this behavior:
- go to your’s installation directory of search-engine-verify,
- edit file search-engine-verify.php at line 191 change
if(is_home() && !is_paged()){
with:
if((is_home() && !is_paged()) || is_page()){
With this two steps all pages will contain veryfication tags, so you can redirect as many pages as you wan’t.