如何使用.htaccess文件转换我的网址?

时间:2016-02-18 17:13:04

标签: php .htaccess

我知道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扩展

1 个答案:

答案 0 :(得分:2)

我不确定这是完全正确的。但基本上这是.htacess中的代码

RewriteEngine On
RewriteRule  /livelor/(.*)$   /livelor/profile.php?u=$1

更多信息和教程 https://www.addedbytes.com/articles/for-beginners/url-rewriting-for-beginners/