Skip to content

PHPVOD 安装步骤

环境要求

PHP 8.x + Mysql 5.x

  1. 解析域名并将网站根目录指向public目录。

  2. 添加伪静态规则。

Apache 伪静态规则

apache
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]

Nginx 伪静态规则

nginx
if (!-e $request_filename) {
  rewrite ^/(.*)$ /index.php/$1 last;
}
  1. 访问 http://YOUR_DOMAIN/install/index 启动安装向导,根据向导提示完成安装。