💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[TOC] <br> <br> ## 前台网站链接 ![](https://img.kancloud.cn/90/74/90743a20d918c3a68528ccf6ac58dc4d_1898x915.png) <br> >**举例说明** 如果域名: localhost,子目录为 web 前台网址:localhost/web/web.asp <br> <br> ## 如何通过域名直接打开前台网站 >[info]**如果域名是localhost ,子目录是 web 那么,前台网站就是http://localhost/web/web.asp 如何通过http://localhost直接打开前台网站?** <br> **解决方案** * [x] 电脑桌面上鼠标右击,新建一个文本文档 ![](https://img.kancloud.cn/fb/66/fb6696599ce700c0e50053231deb0728_910x614.png) <br> * [x] 将文本文档改名为**index.txt** ![](https://img.kancloud.cn/a7/26/a72698bec622c1de822b70dfee800f51_636x341.png) <br> * [x] 打开**index.txt** * [x] 将下列代码复制到**index.txt**,然后保存文件 ``` <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <% response.Redirect("web/web.asp") %> ``` ![](https://img.kancloud.cn/ba/c8/bac8f92f1dff202c744274fc7f6811ab_686x263.png) <br> * [x] 将**index.txt**改名为<span style="color:#6699cc; font-weight:bold;">index.asp</span> * [x] 将<span style="color:#6699cc; font-weight:bold;">index.asp</span>复制到网站的根目录 ![](https://img.kancloud.cn/cd/f1/cdf18863cbbfd255864eed2a01768063_1047x753.png) * [x] 至此大功告成:打开http://localhost后自动跳转到前台网站 <br> <br>