mirror of
https://github.com/php/web-testfest.git
synced 2026-03-24 01:02:12 +01:00
f289e8d4ef7ca9476e262e90bae0b1d552ef0ea6
- 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
Languages
PHP
83.9%
Shell
12.1%
CSS
4%