htaccess is eating my site
-
Hey all,
WordPress is currently stored in my www-root directory, but the catch is that a few other applications need to be installed in subdirectories inside of it.
Right now, my .htaccess file is preventing any .php files from being executed. .html files work fine, but attempting to execute any php files throws you to the wordpress “This Page Cannot Be Found” page, despite the fact that it very well exists.
My current .htaccess file is
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘htaccess is eating my site’ is closed to new replies.