• 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 https://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.

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘.htaccess conflict on godaddy. , how to solve?’ is closed to new replies.