Developing while index.html and index.php both exist
-
I know this might be a total htaccess question but I haven’t been able to find any answers on this.
I have my site up with the static page: http://kliklogik.com
The file is index.htmlI installed wordpress in the same directory and supposedly wordpress has index.php
However, when I go to http://kliklogik.com/index.php it goes to http://kliklogik.com/ (not even index.html)
I am doing this because I would like to roll out the blog feature first before I integrate the whole site in wordpress.
Here’s what it says in my .htaccess:
DirectoryIndex index.html index.php # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressCan anyone help?
I am wondering if it’s an internal wordpress setting to always take out the “index.php”?
Please help.
The topic ‘Developing while index.html and index.php both exist’ is closed to new replies.