I have the following .htacess file, working fine at site root:
RewriteEngine On
#if the requested filename does not exists (as file nor directory), then assume CAT_NAME_HERE/SUB_CAT_HERE
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/([^/]+)/?$ /index.php?c=$1&area=$2 [L,QSA]
RewriteRule ^([^/]+)/([^/]+)/([^/]+)/([^/]+)/?$ /index.php?c=$1&area=$2&d=$3&subarea=$4 [L,QSA]
Now I instaled wordpress at a subfolder/subdomain like http://www.website.com/worpress/ or wordpress.website.com
With this .htaccess file the images of subfolders like wordpress.website.com/wp-admin/
do not display.
Solution?
Thank your for your time.