我在.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
文件搞乱吗?