Apache && Nginx wordpress伪静态(简)
0x01.Apache
在网站的根目录下创建.htaccess,配置如下(要在主配置文件中允许分布式配置):
1 | <IfModule mod\_rewrite.c> |
0x02.Nginx
将以下配置加入网站配置文件(一般是nginx.conf)的server容器:
1 | if (-f $request\_filename/index.html){ |
在网站的根目录下创建.htaccess,配置如下(要在主配置文件中允许分布式配置):
1 | <IfModule mod\_rewrite.c> |
将以下配置加入网站配置文件(一般是nginx.conf)的server容器:
1 | if (-f $request\_filename/index.html){ |