我正在寻找一种强制在锚标记之前添加尾部斜杠的方法,只要有没有尾部斜杠的锚标记。可以用htaccess实现吗?
示例:
localhost / pp / pages#edit / 12
本地主机/ PP /页/管理#编辑/文件/ 12
--->
localhost / pp / pages /#edit / 12
本地主机/ PP /页/管理/编辑#/文件/ 12
感谢。
答案 0 :(得分:0)
有点厚颜无耻但是使用你最喜欢的Javascript lib或者像todo这样的东西:
$(document).ready(function() {
// get all internal anchor tags that dont have trailing slash
$('a[href^="/"]').not('[href$="/"]').each(function() {
$(this).attr('href', function(i, link) {
return link +'/';
});
})
});