Subversion Repositories VORC

Rev

Rev 7 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
7 - 1
ServerName localhost
2
AddHandler cgi-script .cgi .pl
3
 
4
<Directory /var/www/html>
5
    Options All
6
    AllowOverride All
7
</Directory>
8
 
9
<VirtualHost *:80>
10
    DocumentRoot /var/www/html
11
    CustomLog ${APACHE_LOG_DIR}/access.log combined
291 - 12
 
13
    RewriteEngine On
14
    RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI}.pl -f
15
    RewriteRule !\.\w{2,4}$ %{REQUEST_URI}.pl [L,QSA]
16
 
7 - 17
</VirtualHost>