在Ajax中:Nginx和Apache之间的任何配置差异

时间:2015-05-28 06:37:52

标签: php jquery ajax apache nginx

我将运行在nginx(无SSL)的开发服务器上的php应用程序移动到在Apache(使用SSL)上运行的共享托管服务器。

问题:当应用程序在nginx服务器上时,网站的JS脚本(多个JQuery Ajax函数)已经过完全测试并按预期工作。一旦迁移到在Apache上运行的生产服务器,Ajax就会使用" POST"方法停止了工作!

我的.htaccess文件如下所示:

<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
    Options -MultiViews
</IfModule>

RewriteEngine On
RewriteCond %{HTTP:Authorization} ^(.*)
RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]

# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>

以下是来自制作

的标题示例
Remote Address:ipAddress:443
Request URL:https://example.com/store/
Request Method:POST
Status Code:301 Moved Permanently

然后是对同一网址http://example.com/store/

的Get请求

与开发相同的确切要求

Remote Address:ipAddress:80
Request URL:http://example.com/store/
Request Method:POST
Status Code:200 OK

我假设此问题是与Ajax相关的问题或服务器问题。所以这是我的Ajax函数

;(function(){

    $('.create-store').click(function(){
        $.ajax({
              type : 'POST',
              url: "/store/", // I also tried url : "https://www.example.com/store/" 
              data: $('form').serialize(),
              beforeSend: function( xhr ) {
                  // add 
              },
              error: function(data){
                  // handle error   
              },
              success : function(data){
                  // handle success message

              }
            })
              .done(function( data ) {
                //alert('updated'); 

            }); 
        });
})();

1 个答案:

答案 0 :(得分:0)

使用表单数据对象解决了问题!

;(function(){
var formData = new FormData('form');
var method = formData.get('method');
$('.create-store').click(function(){
    $.ajax({
          type : method, //==POST!
          url: "/store/", // I also tried url : "https://www.example.com/store/" 
          data: $('form').serialize(),
          beforeSend: function( xhr ) {
              // add 
          },
          error: function(data){
              // handle error   
          },
          success : function(data){
              // handle success message

          }
        })
          .done(function( data ) {
            //alert('updated'); 

        }); 
    });
})();