Pretty URLS

Permalink
I enabled pretty URLs in c5.3 . It seems to display the pretty url, but I get page not found for all of them. If I switch back, it works fine. What am I missing

 
chunksmurray replied on at Permalink Reply
chunksmurray
When you switch on the pretty urls, Concrete spits out some code for a .htaccess file. Have you created the .htaccess with the appropriate code?

This is assuming you are using apache.

If you have and are still getting errors, there have been some posts in the past along the same lines, might be worth digging around to see if they can shed some light on the issue.
bestchoiceloans replied on at Permalink Reply
Yes, I did add the code to the .htaccess file and I did search the forums. People had other kinds of errors but I did find anything which seemed to be the same problem.

The code I added is
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /loanstoday/

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

This is hosted on hostmonster.com
eOne replied on at Permalink Reply
same issue here.
New install of 5.3.0. on Centos Linux 5.2 server.

here's my htaccess:
<IfModule mod_rewrite.c>
   RewriteEngine On
   RewriteBase /
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule ^(.*)$ index.php/$1 [L]
   </IfModule>


Where I could read some error log to show here ?
dmin7b5 replied on at Permalink Reply
My issue is always on the home page, I have to refresh.
eOne replied on at Permalink Reply
refreshed, cleared cache, cleared browser history+cache ... nothing.

found another post here:http://www.concrete5.org/index.php?cID=359... [strike]but no luck with that either[/strike].

It works now!
bestchoiceloans replied on at Permalink Reply
So what did you do to fix it?
eOne replied on at Permalink Reply
I did what they said there ( link I put above ).

I also wrote one more time what to change where just to make sure and easier next time I might need it.