.htaccess - 动态URL重定向

时间:2018-01-25 15:50:11

标签: php regex apache .htaccess redirect

我想动态重定向网址。我尝试了很多.htaccess组合,但没有一个能为我工作。

这是我的动态网址:http://localhost/verload.php?name=example

这是我想要的网址:http://localhost/example

我需要排除目录" loader"和" admin"我希望只能通过http://admin.localhost/访问。

有可能这样做吗?

由于

编辑:我不希望网址发生变化。我只想让http://localhost/example指向http://localhost/verload.php?name=example。我希望现在很清楚。

1 个答案:

答案 0 :(得分:0)

document.querySelectorAll("[data-u=slides]").forEach(slider=>{
    var maxWidth=0;
    slider.querySelectorAll("img")
        .forEach( image => {
            maxWidth=Math.max(maxWidth,image.width)
        });
    slider.style.maxWidth=maxWidth+"px";
})