I Have two subversionproject which is linked to my domain which is accessible via mydomain.com/project1 and mydomain.com/project2 (these are not "pshycial" directories, I cant see them in my ftp-client)
Now that I have installed WordPress, I can not access these pages, I come to the WordPress 404 page.
So, my question is... In WordPress can I specify the directories mydomain.com/project1 and mydomain.com/project2 so wordpress should leave these directories alone?
I figure it´s in the .htaccess file i should write something but what?
I got some code from a guy but tat didnt work
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_URI} !^/project1
RewriteCond %{REQUEST_URI} !^/project2
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress