Hi All,
Just started out in CMSMS and love it so far. Used may systems in the past and find this easy and not over the top with unwanted functionality.
Now to my issue.
This is possibly simple but i spent the best part of a day and still cant get it working.
I enabled mod rewrite in the congfig file to true.
when i navigate to off the main page i get a 404 error
"Not Found
The requested URL /testing was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request."
The url is being written http:mysite/test-url but the page cant be found.
Cheers
Mod_rewrite 404 error
Re: Mod_rewrite 404 error
Did you add the neccessary rewrite rules to .htaccess?
http://wiki.cmsmadesimple.org/index.php ... l_Settings
Optionally you can also add some additional URL filtering for added security, see this page for more info:# BEGIN CMSMS and Rewrite Rules
# Make sure you have Options FollowSymLinks
# and Allow on
RewriteEngine On
# Might be needed in a subdirectory
#RewriteBase /
# 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
http://wiki.cmsmadesimple.org/index.php ... l_Settings
Re: Mod_rewrite 404 error
check that httpd.conf get AllowOverride All for the cms directory to enable the rewriting rules.