olli460 Posted September 28, 2009 Share Posted September 28, 2009 Hello, Ive got a wordpress blog and i uploaded a file called submit.php When i try and load it in my browser it just redirects saying no file found. <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> Link to comment https://forums.phpfreaks.com/topic/175797-single-php-file-getting-redirected-too/ Share on other sites More sharing options...
trq Posted September 28, 2009 Share Posted September 28, 2009 This line.... RewriteRule . /index.php [L] should be.... RewriteRule (.*) index.php [L] though it shouldn't effect your problem. Link to comment https://forums.phpfreaks.com/topic/175797-single-php-file-getting-redirected-too/#findComment-926348 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.