在域名的情况下(一般用在多站点、独立模块绑定域名、多终端功能等情况下)例如
文章源自玩技e族-https://www.playezu.com/66556.html两个域名地址中存在一样的伪静态规则ablout.html,如果只做两个config/rewrite.php解析文件呢?文章源自玩技e族-https://www.playezu.com/66556.html
解决思路:文章源自玩技e族-https://www.playezu.com/66556.html
在rewrite.php文件中,判断域名分别返回解析数组文章源自玩技e族-https://www.playezu.com/66556.html
'index.php?s=demo&c=show&id=114', * 动态id解析: "([0-9]+).html" => 'index.php?s=demo&c=show&id=$1', */if (DOMAIN_NAME == 'aaa.xxx.com') { return [ // 这里写aaa域名的解析规则 ];}return [ // 这里是系统的解析规则];文章源自玩技e族-https://www.playezu.com/66556.html
这样多域名时就可以区分开了,不与其他域名冲突。文章源自玩技e族-https://www.playezu.com/66556.html
【本文来自互联网如有侵权请联系删除:迅睿CMS 多域名下的伪静态解析规则】文章源自玩技e族-https://www.playezu.com/66556.html 文章源自玩技e族-https://www.playezu.com/66556.html
评论