Can't authenticate after getting to login page

Permalink
Hi, I'm fairly new to the Concrete5 platform. We recently migrated the site to another server.

On the old site, the login URL was abc.biz/login

On the new site, that doesn't work, but abc.biz/index.php/login does.

However, when I log in using that link, I am taken to abc.biz/login/authenticate/concrete and get this error:

http://13.64.113.170/login/authenticate/concrete...

Something isn't matching up. Is there an .htaccess or other invisible file that needed to transfer over? Why are the URLs different?

Thanks for any help.

Stacy

 
CMSDeveloper replied on at Permalink Reply
CMSDeveloper
Hi,

Just works fine for me:
http://www.cubex.biz/login

Just enable "Pretty Urls" to get a url without the /index.php/
Stacyh replied on at Permalink Reply
Is there a way to enable Pretty URLs without logging in (somewhere in the database, perhaps?)

Thanks,
Stacy
andrewjaff replied on at Permalink Reply
andrewjaff
Hi
add this code to .htaccess
<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>