<VirtualHost *:80>
ServerAdmin
admin@admin.com
DocumentRoot D:/www/pe
ServerName pe.example.com
ErrorLog logs/pe-error.log
CustomLog logs/pe-access.log common
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\\.php|images|css|js|robots\\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>
</VirtualHost>