Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. LoadModule aspdotnet_module “modules/mod_aspdotnet.so”
  2.  
  3. AddHandler asp.net asax ascx ashx asmx aspx axd config cs csproj licx rem resources resx soap vb vbproj vsdisco webinfo
  4.  
  5. <IfModule mod_aspdotnet.cpp>
  6.  
  7. AspNetMount /aspdocs “c:/xampp/aspdocs”
  8.  
  9. Alias /aspdocs “c:/xampp/aspdocs”
  10.  
  11. <Directory “c:/xampp/aspdocs”>
  12.  
  13. Options FollowSymlinks ExecCGI
  14.  
  15. Order allow,deny
  16.  
  17. Allow from all
  18.  
  19. DirectoryIndex index.htm index.aspx index.asp
  20.  
  21. </Directory>
  22.  
  23. AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) “C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4″
  24.  
  25. <Directory “C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles”>
  26.  
  27. Options FollowSymlinks
  28.  
  29. Order allow,deny
  30.  
  31. Allow from all
  32.  
  33. </Directory>
  34.  
  35. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement