# core **Repository Path**: miniphp/webrium-core ## Basic Information - **Project Name**: core - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-31 - **Last Updated**: 2021-06-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Create Micro Web App By webrium-core 1) install core ``` composer require webrium/core ``` 2) create the app Directory 3) create the index.php file in app index.php ```PHP 'successful']; }); ``` 4) create the .htaccess file in app .htaccess ``` AddDefaultCharset UTF-8 RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?_url=/$1 [QSA,L] ``` Try it now Output (http://localhost/app/) `` {"message":"successful"} ``