- Created public/ directory for web-accessible files - Moved content and assets to public/ subdirectories - Added .htaccess files for security and routing - Updated config.php to use public/content path - Blocked direct access to PHP files and sensitive directories - Added URL routing to index.php - Enhanced security headers and PHP settings
16 lines
439 B
PHP
16 lines
439 B
PHP
<?php
|
|
|
|
return [
|
|
'site_title' => 'CodePress',
|
|
'site_description' => 'A simple PHP CMS',
|
|
'base_url' => '/',
|
|
'content_dir' => __DIR__ . '/public/content',
|
|
'templates_dir' => __DIR__ . '/templates',
|
|
'cache_dir' => __DIR__ . '/cache',
|
|
'default_page' => 'home',
|
|
'error_404' => '404',
|
|
'markdown_enabled' => true,
|
|
'php_enabled' => true,
|
|
'bootstrap_version' => '5.3.0',
|
|
'jquery_version' => '3.7.1'
|
|
]; |