whatismyipaddress.comJust reinstall or rebuild the addon.Hello
Anyone can paste here the defaut 404 page content, i lost it.
Thanks !
No I did not add *weird. xenforo shows 404 page if i add * to a valid link at the end.
* at the end. and you can setup a redirect like usual. Is it possible to help and send the transfer codeso this addon does detect 404 urls with*at the end. and you can setup a redirect like usual.
are you looking to do it using regex redirects?
I use this code below personally on some sites. It seems odd characters get added to the end of URLs occasionally by visitors, bots, link processors, etc. This code can eliminate numerous 404 errors and get the visitors & bots to where they need to be.i am not good with regex... wait for someone else who can give the regex to redirect all urls ending with * to urls without *.
# Remove Trailing Asterisk / Dot / Quote / Minus / Plus From All URLs BEGIN
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)\*$ /$1 [R=301,L]
RewriteRule ^(.+)\.$ /$1 [R=301,L]
RewriteRule ^(.+)\'$ /$1 [R=301,L]
RewriteRule ^(.+)[\s%20?\-]$ /$1 [R=301,L]
RewriteRule ^(.+)[\s%20?\+]$ /$1 [R=301,L]
# Remove Trailing Asterisk / Dot / Quote / Minus / Plus From All URLs END
# Remove Trailing Asterisk From All URLs BEGIN
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)\*$ /$1 [R=301,L]
# Remove Trailing Asterisk From All URLs END
from my experience, it only triggers when xenforo delivers 404 header message which i believe it does not on private pages. i clicked on a bunch of private pages on my board as a guest and they were not registered by this addon.
so this addon should not change the behavior on private threads. they would load for people having access to them.
so you want to break links saved by your members that are now privately accessible to your members?
for threads it is easy, you can just move all posts of the thread to a new thread. old thread links would die.
post links on the other hand are hard to kill.
We use essential cookies to make this site work, and optional cookies to enhance your experience.