CodeIgniter Forums
Problems with uri / Google Manage Domains - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Problems with uri / Google Manage Domains (/showthread.php?tid=13702)



Problems with uri / Google Manage Domains - El Forum - 12-02-2008

[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?


Problems with uri / Google Manage Domains - El Forum - 12-02-2008

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


Problems with uri / Google Manage Domains - El Forum - 12-03-2008

[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?