即使在转换后,在CentOS环境中编写的 controller: ['$scope', function($scope) {
$scope.updateCategory = function(columnData) {
console.log(columnData.field);
};
}]
也无法与NGINX环境协同工作。
任何人都可以指导我,在NGINX环境中需要遵循什么语法来进行Drupal重写规则?
答案 0 :(得分:1)
对于Drupal中的URL重写,请在location /
部分的server
部分的nginx vhost配置中添加以下内容:
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?q=$1 last;
break;
}