想必新手遇到这种问题的不少。如果你是Nginx转发的,百度资料还是很多的。我这里就不说了。解决的方式也比较简单。
说说难搞的宝塔部署(IIS部署)的。
然后各种百度告诉你的是让你去IIS里下载路由2.0进行XXXX设置。
反正一系列骚操作还不一定能给你整好。
这里我给大家分享下怎么样几行代码搞定。
在网站根目录右键记事本打开:web.config(一般你部署的时候默认就有)。放下如下命令就可以了。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Handle History Mode and custom 404/500" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="/" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>