我在远程服务器上托管了laravel 5,我进行了基本配置,并使用虚拟主机删除了内部服务器错误问题。我通过添加以下规则更新了服务器'apache conf文件。
<Directory "/var/www/server/data/www/example.com/laravel/public">
Allowoverride All
</Directory>
<Directory "/var/www/server/data/www/example.com/laravel">
Allowoverride All
</Directory>
之后,它会删除内部服务器错误问题。但现在索引网页将整个PHP代码显示为网页。公共目录中的.htaccess
文件如下。
AddHandler application/x-httpd-php56 .php .php5 .php4 .php3
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
#RewriteBase /
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
</IfModule>
存储目录拥有完整的777权限。问题在哪里?