diff --git a/layout/widget/profile.jsx b/layout/widget/profile.jsx
index 3ca6e5d2d..55a897b9e 100644
--- a/layout/widget/profile.jsx
+++ b/layout/widget/profile.jsx
@@ -134,17 +134,17 @@ Profile.Cacheable = cacheComponent(Profile, 'widget.profile', props => {
post: {
count: postCount,
title: _p('common.post', postCount),
- url: url_for('/archives')
+ url: url_for('/archives/')
},
category: {
count: categoryCount,
title: _p('common.category', categoryCount),
- url: url_for('/categories')
+ url: url_for('/categories/')
},
tag: {
count: tagCount,
title: _p('common.tag', tagCount),
- url: url_for('/tags')
+ url: url_for('/tags/')
}
},
followLink: follow_link ? url_for(follow_link) : undefined,