合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
# 伪静态配置教程 ##### 1、打开代码配置文件config.php 开启伪静态(false改为true) # ![](https://img.kancloud.cn/0a/bf/0abf308861f505b9ddb89a294a3e002c_389x375.png)![](https://img.kancloud.cn/23/2f/232f81aaa79ea96f4346c51ec63d88e7_887x417.png) ##### 2、后台开启pathinfo模式 ![](https://img.kancloud.cn/04/84/04847539e436cb8b8dd554fcd1367b4b_954x562.png) ##### 3、环境配置 ### Nginx配置 找到nginx的配置文件Nginx.conf添加伪静态配置代码(以下代码) location / { ``` if \(!-e $request\_filename\) { rewrite ^\(.\*\)$ /index.php?s=$1 last; break; } ``` } ### **Apache配置** 1、httpd.conf配置文件中加载了mod\_rewrite.so模块 2、AllowOverride None 将None改为 All ### IIS配置 如果你的服务器环境支持ISAPI\_Rewrite的话,可以配置httpd.ini文件,添加下面的内容: RewriteRule \(.\*\)$ /index.php\?s=$1 \[I\] 在IIS的高版本下面可以配置web.Config,在中间添加rewrite节点: <rewrite> <rules> <rule name="OrgPage" stopProcessing="true"> <match url="^\(.\*\)\[ DISCUZ\_CODE\_1 \]quot; /> <conditions logicalGrouping="MatchAll"> <add input="{HTTP\_HOST}" pattern="^\(.\*\)\[ DISCUZ\_CODE\_1 \]quot; /> <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> ##### 四、配置后对比 配置前 ![](https://img.kancloud.cn/33/12/33125437c2e01fad95b89d2d23aee29c_696x39.png) 配置后 ![](https://img.kancloud.cn/17/b5/17b5103fa82d6d9a28aa68b38b3928d4_564x40.png)