phpbb-seo / usu

Ultimate phpBB SEO Friendly URL extension
GNU General Public License v2.0
17 stars 12 forks source link

member list redirection #21

Open wbervoets opened 5 years ago

wbervoets commented 5 years ago

Accessing the member profile is not working correctly on my site.

eg. /forum/member4.html redirects to /forum/memberlist.php?mode=viewprofile&u=4 which redirects again to /forum/member4.html (causing an infinite loop)

How can I fix this ?

My nginx rules: rewrite ^/forum/member/([^/]+)/?$ /forum/memberlist.php?mode=viewprofile&un=$1 last; rewrite ^/forum/member/([^/]+)/(topics|posts)/?(page([0-9]+)\.html)?$ /forum/search.php?author=$1&sr=$2&start=$4 last; rewrite ^/forum/member(.*).html /forum/memberlist.php?mode=viewprofile&u=$1 permanent;

Any idea?