第一次安装drupal,安装后其他页面均报404,网上百度了下,原因确定是在访问路径上,即请求url需要启用apache的rewrite模块,或者nginx配置支持url重写。
nginx需要在网站配置文件添加如下代码:
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即可访问