Broken Links


Recommended Posts

Were the forums and the wiki moved recently? I find myself frequently clicking on links that no longer work.

 

For example, here is the support thread for rclone.

http://lime-technology.com/forum/index.php?topic=53365.0

It then redirects to

https://unraid.net/forum/index.php?topic=53365.0

Which gives a "File not found." error.

 

I don't recall the link, but I had a similar issue with a wiki link the other day.

 

I have a similar site and use an htaccess file to redirect all links to the correct site. If it helps, this htaccess file should work if placed in both forum folders.

 

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteCond %{HTTP_HOST} ^lime-technology.com/forum$ [OR]
  RewriteCond %{HTTP_HOST} ^unraid.net/forum$
  RewriteRule (.*)$ https://forums.unraid.net/$1 [R=307,L]
</IfModule>

 

This way all old links will still open up the correct threads. Hope this helps.

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.