Error Message - Nothing working!

Permalink
Hello,

I'd just about completed my first c5 website. One of my pages suddenly wouldn't work (I had a redirection loop), so I deleted the .htaccess in preparation to reload the content within. Now none of my pages apart from my homepage will load and I can't access the dashboard at all or sign in on other browsers.

http://www.exmoordesigns.co.uk/cms...

What do I do?

exmoordesigns
 
hutman replied on at Permalink Reply
hutman
What happens if you add a .htaccess with the following into your cms folder?

# -- 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 --
exmoordesigns replied on at Permalink Reply
exmoordesigns
Done it, nothing is different. Still getting 404 errors on all pages.
hutman replied on at Permalink Reply
hutman
The 404 error that you are getting is your host's 404 error, not the CMS 404 error, so that would indicate that it's not even getting to the index.php in the cms folder on the server. Do you have an .htaccess at the root level that might be causing things to break?
hutman replied on at Permalink Reply
hutman
It looks like you're running the CMS in a subfolder but the rewrite rules show

RewriteBase /

I think that needs to be changed to

RewriteBase /cms/

in order for the redirects to get to the correct index.php file
exmoordesigns replied on at Permalink Reply
exmoordesigns
Yes you're spot on.

Thank you so much, problem sorted.

You're a star!