-
Notifications
You must be signed in to change notification settings - Fork 0
Apache
LaCodon edited this page Dec 14, 2015
·
1 revision
Important: This snippet is not yet checked whether it works!
In order to make Famework running, your server has to redirect all requests to your /index.php file. To make Apache doing this, you have to paste the following into your /.htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Maybe you have to replace /index.php
in the forelast line with your public home path. Means, if you normally have to call http://www.example.com/path/index.php in order to run the /index.php, you now have to replace /index.php
with /path/index.php
.
- Home
- Getting Started
- Server Setup
- Configuration Files
- Application Structure
- Classes