htaccess problem I think?
-
I have WordPress installed and working just fine.
The problem lies that whenever I try to install a different PHP script like PHPlist or Machforms, when I try to go to any of the .php file, I get redirected back to the WordPress site and an error that the file could not be found.
This is my htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>No matter what I do, it seems to revert back to the main site. I can list other directories on the server that have html or images, but I can’t get anything with PHP inside to be found.
Any help?
- The topic ‘htaccess problem I think?’ is closed to new replies.