我收到的错误就像是500内部服务器错误,
function getRoleList() {
queryString = '';
$http.post($postDomain + '/tile/getRoles' + queryString).
success(function(data, status, headers, config) {
$scope.roles = data.Listdata;
}).
error(function(data, status, headers, config) {
// log error
});
}
在我上面的函数中没有发布$ http.post($ postDomain +'/ tile / getRoles'+ queryString),我检查了url显示正确但没有去那个url,为什么?我更改了我的文件权限755,我还删除并upolad新的htaccess文件?我做文件权限或我的htaccess文件有什么不对。
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php)
RewriteRule ^(.+)$ index.php?$1 [PT,L,QSA]
Htaccess文件代码。我的代码有什么问题吗?但是我的localhost中的同一文件工作正常但是我移动到服务器它有这样的错误吗?