Re: Friendly URLs 500 error
Posted: Sun Jul 08, 2007 6:13 pm
Hello,
assuming
1°)home/www/(username)/ is your w3 root directory (you browse it with http://www.foobar.net/ )
2°)and your have unpacked CMSms in it and it has created home/www/(username)/cmsmadesimple/
3°)and you installed by browsing to http://www.foobar.net/cmsmadesimple/index.php
4°)and this has redirected you to http://www.foobar.net/cmsmadesimple/install/install.php
5°)and http://www.foobar.net/cmsmadesimple/ should be the base URL for your site
then
1°)the provided .htaccess works for installs in the root folder
2°)your config.php seems ok
3°)try to add this line in your .htaccess after RewriteEngine On :
If
alternate 5°)your want http://www.foobar.net/mypage.html URLs (without /cmsmadesimple/)
then
put the .htaccess in the root w3 folder and please retry my hints redirecting to the cmsmadesimple folder :
Pierre M.
assuming
1°)home/www/(username)/ is your w3 root directory (you browse it with http://www.foobar.net/ )
2°)and your have unpacked CMSms in it and it has created home/www/(username)/cmsmadesimple/
3°)and you installed by browsing to http://www.foobar.net/cmsmadesimple/index.php
4°)and this has redirected you to http://www.foobar.net/cmsmadesimple/install/install.php
5°)and http://www.foobar.net/cmsmadesimple/ should be the base URL for your site
then
1°)the provided .htaccess works for installs in the root folder
2°)your config.php seems ok
3°)try to add this line in your .htaccess after RewriteEngine On :
Code: Select all
RewriteBase /cmsmadesimple
alternate 5°)your want http://www.foobar.net/mypage.html URLs (without /cmsmadesimple/)
then
put the .htaccess in the root w3 folder and please retry my hints redirecting to the cmsmadesimple folder :
Code: Select all
RewriteRule ^(.+)$ cmsmadesimple/index.php?page=$1 [QSA]
OR
RewriteRule ^(.+)\.html$ cmsmadesimple/index.php?page=$1 [QSA]