我刚刚完成了我的 laravel 5 应用程序,它在宅基地上运行良好,现在我将它推到生产环境中,我发现路由系统除了“/”之外没有工作,所以这是我对 .htaccess 和 LAMP 的配置我也是'正在使用让我们加密。
这是我的.htaccess:
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
这是我的 /etc/apache2/sites-available/mohamed-cherif.ml.conf
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin mohamed_che@hotmail.fr
ServerName mohamed-cherif.ml
ServerAlias www.mohamed-cherif.ml
DocumentRoot /var/www/ceevee/public
<Directory /var/www/ceevee/public>
# Don't show directory index
Options -Indexes +FollowSymLinks +MultiViews
# Allow .htaccess files
AllowOverride All
# Allow web access to this directory
Require all granted
</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}/mohamed-cherif.ml.error.log
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/mohamed-cherif.ml.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
RewriteEngine on
RewriteCond %{SERVER_NAME} =mohamed-cherif.ml [OR]
RewriteCond %{SERVER_NAME} =www.mohamed-cherif.ml
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,QSA,R=permanent]
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
最后当我使用 sudo a2enmod rewrite 它说模块重写已经启用
请帮忙,问候。