Advertisement
ChromeWolf

ASP for XAMPP

Sep 8th, 2011
5,029
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 0.35 KB | None | 0 0
  1. <IfModule perl_module>
  2.    <IfModule mime_module>
  3.        AddType application/x-httpd-php .asp
  4.    </IfModule>
  5.  
  6.    <FilesMatch "\.asp$">
  7.        SetHandler application/x-httpd-php
  8.    </FilesMatch>
  9.  
  10.    <Directory "C:/xampp/cgi-bin">
  11.        <FilesMatch "\.asp$">
  12.            SetHandler cgi-script
  13.        </FilesMatch>
  14.    </Directory>
  15. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement