27 lines
854 B
Plaintext
27 lines
854 B
Plaintext
<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
|
|
<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>
|
|
</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> |