Please paste the contents of your .htaccess file. Generally speaking, if you use our .htaccess, any file that actually exists on your server will be served if you try to access it directly.
# Original # If you modify this file then change the above line to: # Modified
RewriteEngine On # Certain hosts may require the following line. # If vanilla is in a subfolder then you need to specify it after the /. # (ex. You put Vanilla in /forum so change the next line to: RewriteBase /forum) # RewriteBase / RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L]
Yeah, that's very weird. This line in the htaccess file: RewriteCond %{REQUEST_FILENAME} !-f says "ignore the rule below if this is a path to a real file." Not sure what's happening with that particular file, but glad you were able to work around it.
Comments
Vanilla Forums COO [GitHub, Twitter, About.me]
http://cevapbankasi.com/google712db21ae41c5835.html
the file is their but I cant access , it says Page Not Found,The page you were looking for could not be found.
Thank you
Vanilla Forums COO [GitHub, Twitter, About.me]
# Original
# If you modify this file then change the above line to: # Modified
RewriteEngine On
# Certain hosts may require the following line.
# If vanilla is in a subfolder then you need to specify it after the /.
# (ex. You put Vanilla in /forum so change the next line to: RewriteBase /forum)
# RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L]
Thanks for helping out.
anyway I verified my site using the dns tool
the file I download from google webmaster toool was google712db21ae41c5835.html
no spaces Triple checked
I gave a try with .txt document and downloaded correctly no page redirects.
that must be some sort of bug or is it my server?
RewriteCond %{REQUEST_FILENAME} !-f
says "ignore the rule below if this is a path to a real file." Not sure what's happening with that particular file, but glad you were able to work around it.