I am currently working on a project: BLZ-Aktuell
When I am searching for site:www.blz-aktuell.de
there are no results. If I do a search for site:blz-aktuell.de
the search works correct.
Do anyone know what this is about?
Hint: I am using CakePHP, that needed to be added a htaccess file in the root directory. This is the source:
<IfModule mod_rewrite.c>
Options FollowSymLinks
RewriteEngine on
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>