1)I have a site that has all my wordpress files installed in a /wordpress folder under the root. I have my .htaccess & index.php at the root level of the domain.
2) I have a page setup called "directors" that is a list of all directors, a child page for each director and then a grandchild page for each directors video.
The problem is, the child pages work, ie. "site.com/directors/name/" & "site.com/directors/name/videoname/" works, but "site.com/directors/" gives a 404 error.
What's wrong?
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress