I am migrating servers from CentOS 4 to CentOS 5 and I ran into a problem with CMSMS and pretty URLs,
CentOS 4 uses Apache 2.0.xx CentOS 5 uses Apache 2.2.xx
The problem is with the news links. The news links don't work.
A look at the apache 2.2 error_log shows:
Code: Select all
[Fri Mar 21 22:56:09 2008] [warn] RewriteCond: NoCase option for non-regex pattern '-d' is not supported and will be ignored.
Code: Select all
# CMSMS Rewriting
# Set assume mod_rewrite to true in config.php and clear CMSMS cache
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
# END CMSMS
Here is my website http://www.curemanual.com
Clicking on the title of the first news item http://www.curemanual.com/news/11/54 does not go anywhere, it stays at the root page. But all the links on my menu works.
Please help me fix this migration problem with pretty URLs in Apache 2.2.