• I have a program in a subdirectory.

    domain.com/subdirectory/admin/

    I cannot access it as a I get a 404 page not found as wordpress is obviously using the permalink structure to try to interpret it.

    It matters not if I use the trailing / or add the page name index.php on the back end.

    Help please.

Viewing 1 replies (of 1 total)
  • Hi,

    Add this code in htaccess:

    # BEGIN WordPress

    <IfModule mod_rewrite.c>
    ErrorDocument 404 /index.php?error=404
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    and have a check with blog and posts.

    Thanks,

    Shane G.

Viewing 1 replies (of 1 total)
  • The topic ‘wordpress permalink structure blocking other program’ is closed to new replies.