首页
赞助
时间轴
追番
留言
友人帐
关于
个人导航
更多
学习笔记
壁纸
Search
1
【台式机】2020-06-07,上半年618推荐配置(都是AMD)
958 阅读
2
21年下半年笔记本挑选
922 阅读
3
域名备案成功
796 阅读
4
2020.10 手机号码正则表达式
734 阅读
5
Mybatis缓存
702 阅读
日常
代码
❤心情
博客插件
电脑推荐
KMS服务
登录
Search
标签搜索
电脑推荐
组装电脑
博客插件
跨域访问错误
Maven
Mybatis
node.js
WebSocket
SpringBoot
Linux
跨域
网页背景效果
音乐播放器
看板娘
Pio插件问题
气泡通知
轻薄本
全能本
笔记本推荐
伪静态
旧梦未眠
累计撰写
72
篇文章
累计收到
14
条评论
今日撰写
0
篇文章
首页
栏目
日常
代码
❤心情
博客插件
电脑推荐
KMS服务
页面
赞助
时间轴
追番
留言
友人帐
关于
个人导航
学习笔记
壁纸
用户登录
登录
搜索到
1
篇与
的结果
2020-02-25
关于Typecho伪静态设置【包含Nginx、IIS】
第一种方法 Nginx环境先去typecho设置里开启重写功能,开启失败选择强制开启。在宝塔里面网站点击设置选择伪静态,选择typecho会自动生成代码。if (!-e $request_filename) { rewrite ^(.*)$ /index.php$1 last; } 如果typecho是子目录选择typecho2location /typecho/ { if (!-e $request_filename) { rewrite ^(.*)$ /typecho/index.php$1 last; } } 记得把typecho换成你的目录名方法二 IIS服务器重写web.config重写关键代码:<rewrite> <rules> <rule name="Main Rule" 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="XXX/index.php/{R:1}" /> </rule> </rules> </rewrite> 如果Typecho是子目录请修改第9行代码url="XXX/index.php/{R:1}" />XXX是你的目录名web.config完整代码:<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="Main Rule" 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="XXX/index.php/{R:1}" /> </rule> </rules> </rewrite> </system.webServer> </configuration> 如果Typecho是子目录请修改第12行代码url="XXX/index.php/{R:1}" />XXX是你的目录名一般空间web.config文件是有配置的请勿删除!把关键代码放在<system.webServer></system.webServer>之间比如下面的有php切换,只需要放在<system.webServer>与平级:<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <handlers> <remove name="PHP-7.2-7i24.com" /> <remove name="PHP-7.1-7i24.com" /> <remove name="PHP-7.0-7i24.com" /> <remove name="PHP-5.6-7i24.com" /> <remove name="PHP-5.5-7i24.com" /> <remove name="PHP-5.4-7i24.com" /> <remove name="PHP-5.3-7i24.com" /> <remove name="PHP-5.2-7i24.com" /> <add name="PHP-5.6-7i24.com" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="c:\php\5.6\php-cgi.exe" resourceType="Either" /> </handlers> <rewrite> <rules> <rule name="Main Rule" 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="XXX/index.php/{R:1}" /> </rule> </rules> </rewrite> </system.webServer> </configuration> 如果Typecho是子目录请修改第23行代码url="XXX/index.php/{R:1}" />XXX是你的目录名部分内容转至:点击访问
2020年02月25日
424 阅读
0 评论
0 点赞