Welcome Guest, Not a member yet? Register   Sign In
Problems with uri / Google Manage Domains
#1

[eluser]Rubiz'[/eluser]
Hello all

I'm using Google Manage Domains right now, and I have 2 verification modes:

1. Insert a google verification meta tag in the head section
2. Upload a file called google5438488468468.html

For some reason the verification meta tag is not working. Google simply does not recognize it. Anyway, my code already has a verify google meta tag, and it would be better dont use this verification method.

Ok, I generated the google5438488468468.html and uploaded to the app root, but I forgot about CI controller uri methods. The URL http://www.base_url.com/google5438488468468.html is always 404.

Anybody knows how to solve this problem?
#2

[eluser]Michael Wales[/eluser]
What is your .htaccess file?
#3

[eluser]Rubiz'[/eluser]
The htaccess was made by other programmer:
Code:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ codeigniter/index.php/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    # Submitted by: ElliotHaughin

    ErrorDocument 404 /index.php
</IfModule>

It can help me?

I need this URL http://mysite.com.br/google5484874.html be valid, and dont be 404 error.
Its possible?




Theme © iAndrew 2016 - Forum software by © MyBB