灰儿 发表于 2020-12-18 02:14:13

江湖家居门户系统和江湖装企营销系统开启伪静态的方法

《江湖家居门户系统》开启伪静态的方法

nginx.txt文件内容:
location ~* /themes\/.*\.(html|xml)$ {
    return 403;
}
location ~* /system\/.*$ {
    return 403;
}
if (!-e $request_filename) {
    rewrite ^/attachs/demo/(.*)$ http://www.ijh.cc/attachs/zxdemo/demo/$1 redirect;
    rewrite ^(.*)$ /index.php last;
}
《江湖装企营销系统》开启伪静态的方法
+--------------------------------------------------------------------------------------------------------------+
一、 先配置你的服务器(IIS/Apache/Nginx等)支持Rewrite功能,
二、 安装包中有对应服务器的rewrite规则 Apache(.htaccess)、Nginx(nginx.txt)、
   IIS6(ISAPI_Rewrite2.x:httpd.ini, ISAPI_Rewreite3.x,ISAPI_Rewrite3.htaccess)、IIS7(Web.Config)
三、 在网站后台 设置->网站设置 开启rewrite
+--------------------------------------------------------------------------------------------------------------+

nginx.txt文件内容:
location /themes\/.*\.(html|xml)$ {
    return 403;
}
if (!-e $request_filename) {
    rewrite ^(.*)$ /index.php last;
}
页: [1]
查看完整版本: 江湖家居门户系统和江湖装企营销系统开启伪静态的方法