Создание контента...
Posted: Sun Mar 29, 2009 6:34 pm
к примеру: создаю новый контент, например, Files, при нажатии предпросмотра всё корректно отображается, а при переходе на эту страницу (например, www.mysite.com/files/) отображается ошибка:
в config.php установлено:
в корне CMSMS создан файл .htaccess со следующим содержанием:
что, может, не так сделал, в чём может быть проблема? заранее благодарю за помощь!
алиас этой страницы установлен filesInternal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
в config.php установлено:
Code: Select all
$config['assume_mod_rewrite'] = true;
$config['use_hierarchy'] = true;
Code: Select all
Options -Indexes
ServerSignature Off
Options +FollowSymLinks
RewriteEngine on
RewriteBase /atech
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_URI} !\.
RewriteRule ^(.*) %{REQUEST_URI}/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?page=$1 [QSA]