2011-02-16 17:43:36 +01:00
|
|
|
<VirtualHost *:80>
|
|
|
|
ServerName extranet.scores-decisions.com
|
|
|
|
AddDefaultCharset utf-8
|
|
|
|
DocumentRoot "D:/www/extranet-2.0/public"
|
|
|
|
|
|
|
|
SetEnv APPLICATION_ENV "development"
|
|
|
|
|
|
|
|
<Directory "D:/www/extranet-2.0/public/">
|
|
|
|
AllowOverride All
|
|
|
|
Order allow,deny
|
|
|
|
Allow from all
|
2011-08-26 17:33:48 +02:00
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
RewriteEngine On
|
|
|
|
RewriteCond %{REQUEST_URI} ^/favicon.ico$ [OR]
|
|
|
|
RewriteCond %{REQUEST_FILENAME} -s [OR]
|
|
|
|
RewriteCond %{REQUEST_FILENAME} -l [OR]
|
|
|
|
RewriteCond %{REQUEST_FILENAME} -d
|
|
|
|
RewriteRule ^.*$ - [NC,L]
|
|
|
|
RewriteRule ^.*$ index.php [NC,L]
|
|
|
|
</IfModule>
|
2011-02-16 17:43:36 +01:00
|
|
|
</Directory>
|
|
|
|
|
|
|
|
# Possible values include: debug, info, notice, warn, error, crit, alert, emerg.
|
|
|
|
LogLevel debug
|
|
|
|
ErrorLog "logs/extranet20.sd.dev-error.log"
|
|
|
|
CustomLog "logs/extranet.sd.dev-access.log" common
|
|
|
|
</VirtualHost>
|