Support » Networking WordPress » Strange htaccess behavior

  • Resolved erikwestlund

    (@erikwestlund)


    I set up Multisite and it works on the primary site. I have a sub folder site, IAMC at /iamc/ This site works too. But it has this strange behavior.

    subfolders off IAMC on the first level throw 404 errors
    those beneath, however, do not.

    I get no errors when disabling permalinks.

    See it in action:

    Works: http://www.globalchange.umd.edu/iamc/
    Does not work: http://www.globalchange.umd.edu/iamc/annual-meetings/
    Works: http://www.globalchange.umd.edu/iamc/annual-meetings/testing/

    My htaccess:

    # BEGIN WordPress
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # uploaded files
    RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]
    
    # add a trailing slash to /wp-admin
    RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule  ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
    RewriteRule  ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
    RewriteRule . index.php [L]
    # END WordPress

    I’m at a loss. Help?

Viewing 1 replies (of 1 total)
  • Thread Starter erikwestlund

    (@erikwestlund)

    I figured it out. There was a plugin conflict with a plugin I used to re-write the author page from /author/staff/. I deleted that and everything is back to normal. Perplexing stuff!

Viewing 1 replies (of 1 total)
  • The topic ‘Strange htaccess behavior’ is closed to new replies.