405 (Method Not Allowed) on AJAX request only when using DNS(仅在使用 DNS 时 AJAX 请求上的 405(不允许的方法))
问题描述
我有一个非常奇怪的问题,我使用 AJAX 从我的 html 页面发送电子邮件,该页面链接到我在同一网站中的 PHP 页面.当我以 IP 模式1xx.xx.xxx.xxx:8080/mywebsite
进入网站时,AJAX 请求工作正常,只有当我使用链接到该 IP 地址的 DNS 时,才会出现此错误:>
POST http://www.mywebsite.ma/sendEmail.php 405(方法不允许)
这是 AJAX 请求:
$.ajax({类型:POST",url: "sendEmail.php",数据:datastr,缓存:假,成功:功能(html){如果(html ==成功"){庆祝TheSuccessOfThisEmailSending();} 别的 {杀了我自己();}},错误:函数(){sumTingWong();}});
我终于找到了问题所在,不知道是不是因为我对 Servers 和其他东西缺乏经验而没有看到.长话短说:我在服务器上安装了 Wamp,我使用 IP+端口来访问它,但是当我使用 DNS 时它直接指向网站文件(包括 php 文件)而它没有不经过Wamp.
我最终卸载了 Wamp 并将 PHP 包含在我的 IIS 服务器中以直接编译 PHP 文件,而无需安装另一台服务器.
我遵循了本教程 -> 如何在 Windows Server 2008 的 IIS 7 上安装 PHP
I have a really weird problem, I use AJAX to send an email from my html page, which links to a PHP page I have within the SAME website. The AJAX request works fine when I enter the website in IP mode 1xx.xx.xxx.xxx:8080/mywebsite
only when I use a DNS that links to this IP address I get this error :
POST http://www.mywebsite.ma/sendEmail.php 405 (Method Not Allowed)
Here's the AJAX request :
$.ajax({
type: "POST",
url: "sendEmail.php",
data: datastr,
cache: false,
success: function(html){
if (html == "success"){
celebrateTheSuccessOfThisEmailSending();
} else {
killMySelf();
}
},
error: function() {
sumTingWong();
}
});
I finally found the problem, I don't know how I didn't see due to my lack of experience with Servers and stuff. Long story short : I installed Wamp on the server, I used the IP+Port to access it, but when I use the DNS it directly points to the website files(including php files) and it didn't go through Wamp.
I ended up uninstalling Wamp and including PHP in my IIS server to directly compile PHP files without the need to install another server.
I followed this tutorial -> How to Install PHP on IIS 7 for Windows Server 2008
这篇关于仅在使用 DNS 时 AJAX 请求上的 405(不允许的方法)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:仅在使用 DNS 时 AJAX 请求上的 405(不允许的方法)
基础教程推荐
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01