# BEGIN WordPress # The stock WordPress front-controller rules, verbatim in shape: any request # that is NOT a real file and NOT a real directory is handed to the CMS. A # published subfolder (e.g. /nexus/) IS a real directory, so it is served from # disk and never reaches the CMS — which is exactly what external_web relies on. RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /cms.html [L] # END WordPress