用url params重写规则

时间:2016-11-08 12:45:16

标签: javascript .htaccess url-rewriting

我知道有关于此的一千个重复帖子,但到目前为止没有任何对我有用。

我尝试使用重写规则将/articulo.html?id=friendly-url转换为/articulo/friendly-url

这是我在.htaccess中使用的没有成功的原因:

RewriteEngine On
RewriteRule ^articulo/(.*)$ /articulo.html?id=$1 [L]

编辑:

这是寻找id param的js:

var getUrlParameter = function getUrlParameter(sParam) {
    var sPageURL = decodeURIComponent(window.location.search.substring(1)),
        sURLVariables = sPageURL.split('&'),
        sParameterName,
        i;
        console.warn(sPageURL);
        console.warn(sURLVariables);

    for (i = 0; i < sURLVariables.length; i++) {
        sParameterName = sURLVariables[i].split('=');

        if (sParameterName[0] === sParam) {
            return sParameterName[1] === undefined ? true : sParameterName[1];
        }
    }
};

1 个答案:

答案 0 :(得分:2)

尝试这样,

Options -Multiviews 
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^articulo/(.*)$ articulo.html?id=$1 [L]