若需取消 PHPCMS 手机端伪静态:注释掉 include/extend.func.php 中的 import_right();修改 include/mobile.config.php 中正则表达式,允许 URL 包含字母、数字、下划线和连字符;清除 statics/mobile/ 目录下的伪静态文件。
如何取消 PHPCMS 手机端伪静态
直接取消
在 include/extend.func.php
文件中找到以下代码:
<code class="php">if(defined('IS_MOBILE') && defined('URLRULE') && URLRULE == 'html') { import_right(); }</code>
将其注释掉或删除即可。
修改伪静态规则
在 include/mobile.config.php
文件中找到以下代码:
<code class="php">if (defined('IS_MOBILE') && $_SERVER['REQUEST_URI'] != '/index.php') { $matches = array(); preg_match('/\/(.*?)\/([0-9]+)\/$/i', URL, $matches); if (count($matches) == 3) { $_GET['catid'] = $matches[2]; } }</code>
将 /([0-9] )\/$/i
中的正则表达式修改为 /([0-9a-zA-Z\-_] )\/$/i
,即可允许伪静态 URL 包含字母、数字、下划线和连字符。
清除伪静态文件
如果之前生成了伪静态文件,需要清除这些文件。可以通过以下两种方式进行:
statics/mobile/
目录下的所有 .html
文件并删除。rm -rf statics/mobile/*.html
以上是phpcms手机端如何取消伪静态的详细内容。更多信息请关注PHP中文网其他相关文章!