Skip to content

Instantly share code, notes, and snippets.

@josejlm2
Last active November 7, 2023 06:38
Show Gist options
  • Save josejlm2/1c4a7df013cdcd60b0c4 to your computer and use it in GitHub Desktop.
Save josejlm2/1c4a7df013cdcd60b0c4 to your computer and use it in GitHub Desktop.
How to setup ASP.NET in XAMPP
#asp.net
LoadModule aspdotnet_module "modules/mod_aspdotnet.so"
AddHandler asp.net asax ascx ashx asmx aspx axd config cs csproj licx
rem resources resx soap vb vbproj vsdisco webinfo
<IfModule mod_aspdotnet.cpp>
AspNetMount /SampleASP "c:/xampp/asp_docs"
Alias /SampleASP "c:/xampp/asp_docs"
<Directory "c:/xampp/asp_docs">
Options FollowSymlinks ExecCGI
Order allow,deny
Allow from all
DirectoryIndex index.htm index.aspx
</Directory>
AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*)
"C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4"
<Directory
"C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles">
Options FollowSymlinks
Order allow,deny
Allow from all
</Directory>
</IfModule>
#asp.net
@Codename-Beast
Copy link

not working !!!!!#

@MrPropperYT
Copy link

tf is this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment