lincanbin / Carbon-Forum

A high performance open-source forum software written in PHP. Discussions Tags based with Quora/StackOverflow style.
https://www.94cb.com/
Apache License 2.0
1.84k stars 434 forks source link

如何关闭手机端 #275

Closed ghost closed 6 years ago

ghost commented 6 years ago

如题,如何关闭手机端?即每次访问都显示电脑页面。

lincanbin commented 6 years ago

common.php中找到

elseif ($_SERVER['HTTP_HOST'] == $Config['MobileDomainName'] || (!$Config['MobileDomainName'] && $IsMobile)) {
    $TemplatePath = __DIR__ . '/view/mobile/';
    $Style        = 'Mobile';
    header('X-Frame-Options: SAMEORIGIN');
}

elseif括号中的内容改为false。