伪静态配置教程

优质
小牛编辑
132浏览
2023-12-01
1、打开代码配置文件config.php 开启伪静态(false改为true)
2、后台开启pathinfo模式

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>

四、配置后对比

配置前

配置后