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
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
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
same issue here.
New install of 5.3.0. on Centos Linux 5.2 server.
here's my htaccess:
Where I could read some error log to show 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 ?
My issue is always on the home page, I have to refresh.
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!
found another post here:http://www.concrete5.org/index.php?cID=359... [strike]but no luck with that either[/strike].
It works now!
So what did you do to fix it?
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.
I also wrote one more time what to change where just to make sure and easier next time I might need it.
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.