如果我将所有内容发送到index.php会影响ajax调用吗?

时间:2017-01-15 22:47:13

标签: php ajax friendly-url

我在.httaccess

中有这个
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php [L,QSA]

所以一切都进入index.php,但是如何处理像这样的ajax调用呢?

$.ajax({
    type: "POST",
    dataType: "json",
    url: "includes/php/dostuff.php",
    data: {"somvar": 5, "someothervar": 10}
})

另外我可以100%肯定.httaccess只是按照我现在的方式使用.php文件搞乱吗?

0 个答案:

没有答案