Access page outside yii

Hi guys, i just installed wordpress in public_html/wordpress.

but when i go to mydomain.nl/wordpress/index.php i’ll get the page not foud error from yii.

how can i access my wordpress installation


Page Not Found

Unable to resolve the request "wordpress".


The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.


If you think this is a server error, please contact the webmaster. 


<IfModule mod_rewrite.c>

    Options +FollowSymLinks

    IndexIgnore */*

    RewriteEngine on


    RewriteCond %{HTTP_HOST} !^(admin)\.(.*)$ [NC]

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteRule ^(.*)$ /index.php/$1 [L]


    # Redirecting admin to admin.php

    RewriteCond %{HTTP_HOST} ^admin\.(.*)$ [NC]

    RewriteCond %{REQUEST_URI} !^/admin.php

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteRule ^(.*)$ /admin.php/$1 [L]


    # If subdomain

    RewriteCond %{HTTP_HOST} ([^\.]+)\.mydomain\.nl$

    # Check that the subdomain part is not www and ftp and mail

    RewriteCond %{HTTP_HOST} !^(admin|www|ftp|mail)\.(.*)$ [NC]

    # Redirect all requests to a php script passing as argument the subdomain

    RewriteRule ^(.*)$ http://mydomain.nl/index/test/city/%1 [R=301,L]


    # Redirecting www version to non-www version

    RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]

    RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

</IfModule>

Hmm, RewriteCond %{REQUEST_FILENAME} !-f should prevent this.

Are you sure that this configuration is active in your htdocs folder?

yes it is active, bezause die admin.mydomain.nl and *.mydomain.nl is working