Last active
November 7, 2023 06:38
-
-
Save josejlm2/1c4a7df013cdcd60b0c4 to your computer and use it in GitHub Desktop.
How to setup ASP.NET in XAMPP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
not working !!!!!#