问:你好,我这台云主机怎么开启伪静态?程序是phpwind,设置了还是不成功,麻烦帮忙看下,网站地址是 http://3c.1688jz.com/ 谢谢,我这台云主机怎么开启伪静态?程序是phpwind
答:您好,
核实您的服务器是windows系统, 并且使用的IIS作为web服务端, 请上传基于web.config的伪静态规则配置文件到站点根目录下, 您也可尝试复制以下我们收集的规则; 若是规则无效, 请联系您的程序提供商获取.非常感谢您长期对我司的支持!
站点根目录下新建web.config 然后复制以下内容到该文件并保存<?xml version=\”1.0\” encoding=\”UTF-8\”?><configuration> <system.webServer> <rewrite> <rules> <rule name=\”rewrite\” stopProcessing=\”true\”> <match url=\”.(js|ico|gif|jpe?g|bmp|png|css)$\” negate=\”true\” /> <conditions logicalGrouping=\”MatchAll\”> <add input=\”{REQUEST_FILENAME}\” matchType=\”IsFile\” ignoreCase=\”false\” negate=\”true\” /> <add input=\”{REQUEST_FILENAME}\” matchType=\”IsDirectory\” ignoreCase=\”false\” negate=\”true\” /> </conditions> <action type=\”Rewrite\” url=\”/index.php\” /> </rule> </rules> </rewrite> </system.webServer></configuration>