文档/启动应用程序/Apache

Apache

项目的公共文件夹中包含一个 .htaccess 文件,具有运行 HLEB2 框架所需的设置。

在将框架与 Apache 一起使用之前,请确保启用 mod_rewrite 模块,以便服务器可以处理 .htaccess 文件。

通过设置 Apache 的基本配置。默认情况下,这些设置已在 /public/.htaccess 中指定,但在使用 .htaccess 文件时,请确保 AllowOverride 设置为 All

<VirtualHost *:80>
ServerName mysite.com
# 公共文件夹的路径
DocumentRoot    /var/www/mysite.com/public/

# 如果不使用 .htaccess
<Directory /var/www/mysite.com/public/>
AddDefaultCharset UTF-8
    <IfModule mod_rewrite.c>
      <IfModule mod_negotiation.c>
        Options +FollowSymLinks -MultiViews -Indexes
      </IfModule>
      RewriteEngine on
      # 将所有请求重定向到 index.php
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteRule ^ index.php [L]
    </IfModule>
</Directory>
</VirtualHost>

启动服务器后,您可以在浏览器地址栏中输入之前分配的(本地或远程服务器上)资源地址来验证安装。

使用 Nginx 运行 RoadRunner 服务器

页面翻译:chatgpt 4-o
返回顶部