我知道stackoverflow中有很多问题但是没有问题 我想转换这个网址
function alter_data() {
$.ajax({
url: 'ajax_data.php',
type: 'POST',
data:jQuery('#Form1').serializeArray(),
success: function(data) {
jQuery('#2selectbox').html(data);
}
});
}
要
http://localhost/livelor/profile.php?u=nane
我想删除我的php扩展
答案 0 :(得分:2)
我不确定这是完全正确的。但基本上这是.htacess中的代码
RewriteEngine On
RewriteRule /livelor/(.*)$ /livelor/profile.php?u=$1
更多信息和教程 https://www.addedbytes.com/articles/for-beginners/url-rewriting-for-beginners/