🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
注意 宝塔IIS的坑, 一定要用phpinfo() 打印PHP版本 ,有可能显示 PHP7.0版本实际上只有5.27版本 出现以下问题十有八九是版本问题 `**Parse error**: syntax error, unexpected T\_STRING in**D:\\wwwroot\\zhenai.susongzhidao.cn\\index.php**on line**2**` 在 根目录下 新建文件 web.config 内容如下: ``` <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="OrgPage" stopProcessing="true"> <match url="^(.*)$" /> <conditions logicalGrouping="MatchAll"> <add input="{HTTP_HOST}" pattern="^(.*)$" /> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="index.php/{R:1}" /> </rule> </rules> </rewrite> </system.webServer> </configuration> ```