Hi,

Originally Posted by
buildingblocks
I installed uri mapper last night and now the index.html won't load. The site opens to index.php.
This is because Ceon URI Mapping sees index.php, index.php?main_page=index and / all as the same (which is a good thing ;) ).
You basically want to temporarily have '/' as '/index.html' but '/' is currently assigned to '/index.php'.
You should be able to have /index.html take control of / by adding the following to the rewrite rule:
Code:
RewriteCond %{REQUEST_URI} !^/$
This stops / being rewritten and passed on to /index.php
All the best..
Conor
ceon