2008-04-01 04:30:37 +00:00
2008-04-01 04:30:37 +00:00
2008-04-01 01:50:53 +00:00
2008-04-01 01:50:53 +00:00
2008-04-01 01:50:53 +00:00

- This code is running on the Solar framework

VHOST Example
# http://local.testfest.com
<VirtualHost *:80>
    ServerName local.testfest.com
    DocumentRoot /path/to/testfest
    <Directory />
        AllowOverride All
        Order deny,allow
        Allow from all
    </Directory>

    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_URI} !^/public/.*$
    RewriteRule ^(.*)$ /index.php [QSA,L]
</VirtualHost>

or in a .htaccess

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !^/public/.*$
RewriteRule ^(.*)$ /index.php [QSA,L]
Description
No description provided
Readme 237 KiB
Languages
PHP 83.9%
Shell 12.1%
CSS 4%