在Ajax中是否可以更改“隐藏URL”的“真实URL”?

我想问一下,在Ajax中是否可以更改“隐藏URL”的“真实URL”。把这个URL:

$.ajax({  
type: "POST",   
url: "http://localhost/process.php",
data: form.serialize(),
dataType : 'json',
success: function(data) {...}
});

改成这个URL:

$.ajax({  
type: "POST",   
url: "http://localhost/hide",
data: form.serialize(),
dataType : 'json',
success: function(data) {...}
});

我尝试使用.htaccess,但没用:

RewriteEngine On
RewriteBase /
RewriteRule ^/hide.*$ /process.php [L,QSA]

多谢帮助!

Try this...

Options FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteRule ^hide$ process.php