Home > Topics > Pagoda Panel > body text

How to correctly configure thinkphp's pseudo-static in the Pagoda panel

PHPz
Release: 2023-04-11 14:06:48
Original
6200 people have browsed it

前言:

宝塔面板是一个非常优秀的服务器面板,可以轻松地搭建网站、部署项目,也可以快速安装各种应用和软件。但是,在使用宝塔面板搭建网站的时候,我们有时会遇到伪静态配置的问题,尤其是在使用thinkphp框架的情况下。本文将介绍如何在宝塔面板中正确配置thinkphp的伪静态,以便顺利访问网站。

一、 宝塔开启伪静态规则

在宝塔面板中开启伪静态规则非常简单,只需要按照以下步骤进行操作即可:

  1. 登录宝塔面板,选择对应网站的“网站设置”页面。
  2. 在“高级设置”中找到“伪静态”,选择“开启”。
  3. 在“伪静态规则”里,选择对应的规则,如果没有适合的规则,可以自定义规则。
  4. 点击“保存”,重新启动nginx或apache服务器即可。

在大多数情况下,开启宝塔面板的伪静态规则,我们就可以在不修改任何代码和配置下,正常访问thinkphp的程序了。但是也有一些情况需要我们进一步注意。

二、 遇到的问题

  1. 404错误页面

有时候即使我们开启了伪静态规则,仍然会出现页面404错误的情况。这时,我们需要检查一下以下几个方面:

(1). 确认服务器已经重启,让配置文件生效。

(2). 确认伪静态规则的正则表达式是否正确。thinkphp官方推荐的伪静态规则如下:

# apache 伪静态重写规则
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php [QSA,PT,L]
</IfModule>

# nginx伪静态规则
location / {
    if (!-e $request_filename) {
        rewrite ^(.*)$ /index.php?s=$1 last;
        break;
    }
}
Copy after login

(3). 确认.htaccess文件是否存在,以及是否含有特殊字符。有时,当我们在windows本地开发环境中写好.htaccess文件后,上传到服务器,发现页面仍然无法正常访问。这时我们需要使用“winscp”等ftp工具对.htaccess文件进行重新保存,以确保不含有特殊字符。

  1. 出现thinkphp原生url

尽管我们设置了伪静态规则,但有时我们仍然会出现thinkphp原生的url。我们需要检查以下几个方面:

(1). 确认是否在php中开启了“rewrite_module”。可以在phpinfo()中查看相关的“Loaded Modules”来确认是否启用了rewrite_module。

(2). 确认thinkphp中的rewrite配置是否开启。在thinkphp的“conf\config.php”中,我们需要确认是否开启了rewrite,即:

'url_html_suffix' => 'html', // 伪静态后缀
'url_route_on' => true, // 是否开启路由
Copy after login

三、 总结

在使用宝塔面板搭建网站的时候,我们有时会遇到伪静态配置的问题。本文对此问题进行了详细的分析和解决方案,希望可以对大家有所帮助。

The above is the detailed content of How to correctly configure thinkphp's pseudo-static in the Pagoda panel. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!