Pretty URLs then total cresh

Permalink
I clicked the box to eliminate index.php from my URLs and it not only didn't work but now my site is down.

I can get to the main page by going tohttp://themanethingsalon.com but going anywhere else fails, additionally going tohttp://www.themanethingsalon.com... fails as well.

this is a click and install on 1and1 ... I have ensured that the .htaccess is empty also.

any help would be much appreciated as the site just went live and now all eyes are on me.

thanks

xkribble
 
hutman replied on at Permalink Reply
hutman
Add this to your .htaccess file

# -- concrete5 urls start --
<IfModule mod_rewrite.c>
   RewriteEngine On
   RewriteBase /
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME}/index.html !-f
   RewriteCond %{REQUEST_FILENAME}/index.php !-f
   RewriteRule . index.php [L]
</IfModule>
# -- concrete5 urls end --