Pretty URLs problem
Permalink
Hi,
I'm a newbie to Concrete5 and have done my first install today after viewing many videos and reading up on how it all works.
I installed the 'blank' theme and started a new theme based on a site I had already developed. Everything was going fine and looking good, I had a couple of editable areas working as well.
I decided to have a look in the 'systems' area and saw the 'pretty urls' link. I wanted that for the site so I enabled it....bad move obviously!
I now cannot access my site it comes up with a 403 error. I've read a few things on the forum, but not having any luck with being able to get back into the admin area.
Any ideas?
I'm a newbie to Concrete5 and have done my first install today after viewing many videos and reading up on how it all works.
I installed the 'blank' theme and started a new theme based on a site I had already developed. Everything was going fine and looking good, I had a couple of editable areas working as well.
I decided to have a look in the 'systems' area and saw the 'pretty urls' link. I wanted that for the site so I enabled it....bad move obviously!
I now cannot access my site it comes up with a 403 error. I've read a few things on the forum, but not having any luck with being able to get back into the admin area.
Any ideas?
# -- 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 --