drupal 8.4.4 安装后除首页外均报404 错误

第一次安装drupal,安装后其他页面均报404,网上百度了下,原因确定是在访问路径上,即请求url需要启用apache的rewrite模块,或者nginx配置支持url重写。


nginx需要在网站配置文件添加如下代码:
location / {
    index  index.php index.html index.htm;
    try_files $uri @rewrite;
  }

  location @rewrite {
    rewrite ^ /index.php;
  }

apache:
mod_rewrite 提供了基于perl正则表达式规则动态修改传入的请求的 URL 的方法。 这允许你以自己喜欢的任意方法映射任意 URL 到你的内部 URL 结构。一种是在httpd.conf的全局下直接利用RewriteEngine on来打开rewrite功能;另一种是在局部里利用RewriteEngine on来打开rewrite功能.
需要在网站配置文件添加:
RewriteEngine on(virtualhost下)
AllowOverride All(directory下)
并在主目录下添加.htacess文件。

<VirtualHost *:80>

        DocumentRoot /alidata/www/*/public

        ServerName bj.test.com

        ErrorLog "/alidata/log/bj-error.log"

        CustomLog "/alidata/log/bj.log" common


        SetEnv APPLICATION_ENV "production"


        <Directory /alidata/www/bj/public>

                DirectoryIndex index.php

                AllowOverride All

                Order allow,deny

                Allow from all

        </Directory>

RewriteEngine on

</VirtualHost>



重启服务器,drupal即可访问

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值