URL /index.php was not found
-
I work on a site for a friend. I copied the site to a different server and domain/sub-folder for the purposes of testing/developing a new theme. The home page works, database is connected (at least no more error messages).
Now, I’m getting the “Not Found The requested URL /index.php was not found on this server.” error page when trying to connect to anything other than the home page.
I have researched similar problems. Answers indicate that .htaccess may need to be modified. Here’s what works on the original site:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressI’ve also edited it to match other help posts that I’ve found:
# BEGIN WordPress RewriteEngine On <IfModule mod_rewrite.c> RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressStill doesn’t work… I’ve checked wp_options/permalink in the database and it is set to “/%postname%/” (quotes not included in data)
I’m at a loss as to what to try next. Any suggestions?
Original site is “learntosingbetterfast.com” and test site is “rpwproductions.com/Sing/”
The topic ‘URL /index.php was not found’ is closed to new replies.