我在 localhost 上成功运行了代码。但服务器上的相同代码我得到错误 301 永久删除已永久移动。我使用发布请求。我的代码如下。
$(function(){
$("#search_text").keyup(function(e){
var sVal = $(this).val();
$("#search").removeAttr('disabled');
$.post('http://localhost/website/index.php/search/ajaxResults',{Search:sVal},function(data){
//my code here
});
});
});
它成功地完成了。
但在网络服务器上也是一样的,代码如下:
$(function(){
$("#search_text").keyup(function(e){
var sVal = $(this).val();
$("#search").removeAttr('disabled');
$.post('http://schoolanduniversity.com/index.php/search/ajaxResults',{Search:sVal},function(data){
//my code here
});
});
});
我收到错误 301