i need to figure out how i can execute the index.php on webspace root.
I have this:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^ /index.php [L]
Now i have a folder root/some/projects In projects are some php logics.
I wana browse to www.domain.de/some and i get a Error:
Forbidden
You don't have permission to access /some/ on this server.
Because in root/some is no php logic in. So i want that he executes the root/index.php coz there is a cms with the right content for www.domain.de/some and not the root/some/index.php
anyone have a solution?
Thx