Local copy of site returns 404 for all content outside of core .php templates

Found the problem. It was with my .htaccess file. While I had changed

RewriteBase /

to

RewriteBase /mysite

I did not realize I also had to change

RewriteRule . /index.php [L]

to

RewriteRule . /mysite/index.php [L]

That fixed it.