zoukankan      html  css  js  c++  java
  • destoon模块绑定二级域名出现 File not found解决办法

       昨天晚上帮一个朋友给我说他绑定模块二级域名出现 File not found,所以今天分享关于解决办法。

       模块启用二级域名后,首页打开正常,但是点内容页和列表页出现File not found.

       解决方法,单独给读模块设置伪静态规则即可,规则如下:

       

    rewrite ^/list-([0-9]+)([-])?([0-9]+)?.html$ /list.php?catid=$1&page=$3;
    rewrite ^/show-([0-9]+)([-])?([0-9]+)?.html$ /show.php?itemid=$1&page=$3;
    

      

  • 相关阅读:
    POJ 2209
    POJ 2196
    POJ 2215
    POJ 2192
    POJ 2195
    POJ 2181
    POJ 2182
    POJ 2159
    POJ 2153
    字符设备驱动 —— 字符设备驱动框架
  • 原文地址:https://www.cnblogs.com/68xi/p/11723917.html
Copyright © 2011-2022 走看看