首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Apache2 LinuxMint Lararvel

Apache2 LinuxMint Lararvel
EN

Stack Overflow用户
提问于 2021-10-05 12:43:37
回答 1查看 51关注 0票数 0

我在laravel中配置了apache虚拟主机链接项目。但我猜自动加载机不能工作。这就是我的处境。

在/etc/apache2/sites avaible中为虚拟主机写入了我的文件(我尝试了,但没有工作)。

代码语言:javascript
复制
<VirtualHost medfx.lo:80>

    ServerAdmin webmaster@medfx.lo
    DocumentRoot /var/www/medfx/public

    <Directory "/var/www/medfx/public">
            Options FollowSymLinks MultiViews
        ReWriteEngine On
    </Directory>

    # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
    # error, crit, alert, emerg.
    # It is also possible to configure the loglevel for particular
    # modules, e.g.
    #LogLevel info ssl:warn

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

    # For most configuration files from conf-available/, which are
    # enabled or disabled at a global level, it is possible to
    # include a line for only one particular virtual host. For example the
    # following line enables the CGI configuration for this host only
    # after it has been globally disabled with "a2disconf".
    #Include conf-available/serve-cgi-bin.conf
</VirtualHost>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

I /var/www/ I创建我的项目medfx并创建laravel项目。

代码语言:javascript
复制
root@tecnico57-System-Product-Name:/var/www/medfx# ls -l
drwxr-xr-x 11 root root   4096 ott  5 12:43 app
-rwxr-xr-x  1 root root   1686 ott  5 12:43 artisan
drwxr-xr-x  3 root root   4096 ott  5 12:43 bootstrap
-rwxr-xr-x  1 root root   1827 ott  5 12:43 composer.json
-rwxr-xr-x  1 root root 302152 ott  5 14:29 composer.lock
drwxr-xr-x  2 root root   4096 ott  5 12:43 config
drwxr-xr-x  5 root root   4096 ott  5 12:43 database
-rwxr-xr-x  1 root root    767 ott  5 12:43 package.json
-rw-r--r--  1 root root 776150 ott  5 12:43 package-lock.json
-rwxr-xr-x  1 root root   1202 ott  5 12:43 phpunit.xml
drwxr-xr-x  8 root root   4096 ott  5 12:43 public
-rwxr-xr-x  1 root root   3810 ott  5 12:43 README.md
drwxr-xr-x 10 root root   4096 ott  5 12:43 resources
drwxr-xr-x  2 root root   4096 ott  5 12:43 routes
-rwxr-xr-x  1 root root    563 ott  5 12:43 server.php
drwxr-xr-x  5 root root   4096 ott  5 12:43 storage
drwxr-xr-x  4 root root   4096 ott  5 12:43 tests
drwxr-xr-x 49 root root   4096 ott  5 14:29 vendor
-rwxr-xr-x  1 root root    520 ott  5 12:43 webpack.mix.js

现在,如果我在http://medfx.lo上,它是视图:

代码语言:javascript
复制
<?php

use Illuminate\Contracts\Http\Kernel;
use Illuminate\Http\Request;

define('LARAVEL_START', microtime(true));

/*
|--------------------------------------------------------------------------
| Check If The Application Is Under Maintenance
|--------------------------------------------------------------------------
|
| If the application is in maintenance / demo mode via the "down" command
| we will load this file so that any pre-rendered content can be shown
| instead of starting the framework, which could cause an exception.
|
*/

if (file_exists(__DIR__.'/../storage/framework/maintenance.php')) {
    require __DIR__.'/../storage/framework/maintenance.php';
}

/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader for
| this application. We just need to utilize it! We'll simply require it
| into the script here so we don't need to manually load our classes.
|
*/

require __DIR__.'/../vendor/autoload.php';

/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request using
| the application's HTTP kernel. Then, we will send the response back
| to this client's browser, allowing them to enjoy our application.
|
*/

$app = require_once __DIR__.'/../bootstrap/app.php';

$kernel = $app->make(Kernel::class);

$response = tap($kernel->handle(
    $request = Request::capture()
))->send();

$kernel->terminate($request, $response);

我的/etc/hosts:

代码语言:javascript
复制
127.0.0.1   localhost
127.0.1.1   tecnico57-System-Product-Name

# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

有人能帮我吗?

诚挚的问候。

EN

回答 1

Stack Overflow用户

发布于 2021-11-01 10:19:27

解决方案是PHP。Apache2没有解释的Laravel项目,不能正确运行php和它的打印代码到屏幕上没有解释。

解决方案是重新安装全局php并将apache2链接到新版本php。留下代码。

代码语言:javascript
复制
sudo add-apt-repository ppa:ondrej/php

sudo apt-get update

sudo apt-get install php7.1

sudo apt-get install php7.1-cli php7.1-common php7.1-json php7.1-opcache php7.1-mysql php7.1-mbstring php7.1-mcrypt php7.1-zip php7.1-fpm

sudo a2dismod php7.2

sudo a2enmod php7.1

sudo service apache2 restart

在运行命令之前,在命令中使用您首选的php版本。

祝Ty Kristian万事如意!

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/69450693

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档