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;

  

上一篇:阿里云Centos中二级域名绑定二级目录的方法


下一篇:wpf CollectionViewSource的运用