BT.RedirectManager 1.2.32

There is a newer version of this package available.
See the version list below for details.
dotnet add package BT.RedirectManager --version 1.2.32
                    
NuGet\Install-Package BT.RedirectManager -Version 1.2.32
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BT.RedirectManager" Version="1.2.32" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BT.RedirectManager" Version="1.2.32" />
                    
Directory.Packages.props
<PackageReference Include="BT.RedirectManager" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add BT.RedirectManager --version 1.2.32
                    
#r "nuget: BT.RedirectManager, 1.2.32"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package BT.RedirectManager@1.2.32
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=BT.RedirectManager&version=1.2.32
                    
Install as a Cake Addin
#tool nuget:?package=BT.RedirectManager&version=1.2.32
                    
Install as a Cake Tool

Bitiz Redirect Manager

A URL redirect manager plugin for Umbraco CMS 13 and 17. Manage 301, 302, 404, and 410 redirects directly from the Umbraco backoffice with a modern dashboard, CSV import/export, regex support, and a built-in test tool.

Screenshots

Bitiz Redirect Manager – Dashboard

Bitiz Redirect Manager – Add New Redirect

Bitiz Redirect Manager – Edit Redirect

Features

  • Multiple status codes: 301 (Permanent), 302 (Temporary), 404 (Not Found), and 410 (Gone).
  • Modern backoffice dashboard: Clean Umbraco 17 dashboard built with Lit; search, filter, and bulk actions.
  • Regex and exact match: Support for both exact path redirects and regex rules with capture groups.
  • CSV import/export: Quickly migrate or bulk edit redirects via CSV.
  • Test tool: Test a path before saving to see which redirect will match.
  • Database storage: Redirects stored in a dedicated table, fully controlled from the backoffice.
  • Automatic migration: Database table created/updated automatically on installation.
  • Auto-update App_Plugins: App_Plugins assets are copied on build via the included MSBuild targets.

Installation

Docker ile kendi NuGet sunucunuz (önerilen)

Kendi NuGet sunucunuzu Docker’da çalıştırıp plugini oraya atar, istediğiniz projede dotnet add package BT.RedirectManager ile kurarsınız.

  1. NuGet sunucusunu başlatın: docker compose -f docker/docker-compose.yml up -d
  2. Plugini sunucuya gönderin: ./scripts/push-to-feed.sh (Windows: .\scripts\push-to-feed.ps1)
  3. Kurulum yapacağınız projenin solution klasörüne nuget.config ekleyin (nuget.config.example örneğine bakın; feed: http://localhost:5555/v3/index.json)
  4. Projede: dotnet add package BT.RedirectManagerdotnet build

Detaylı adımlar: docs/NUGET-SUNUCU-VE-KURULUM.md

From NuGet.org

dotnet add package BT.RedirectManager

Or via NuGet Package Manager:

Install-Package BT.RedirectManager

NuGet sunucusu / yerel feed: Paketi kendi projelerinize dotnet add package ile kurma seçenekleri (yerel klasör, nuget.org, özel BaGet sunucusu) için bkz. docs/NUGET-SUNUCU-VE-KURULUM.md.

Local Installation (Development)

  1. Clone the repository:
git clone https://github.com/batuhanilgarr/Umbraco-RedirectManager.git
  1. Build the package:
cd Umbraco-RedirectManager
dotnet build
  1. Add nuget.config to your solution folder:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
    <add key="LocalFeed" value="/path/to/Umbraco-RedirectManager/bin/Debug/" />
  </packageSources>
</configuration>
  1. Add the package to your project:
dotnet add package BT.RedirectManager
  1. Build your project (App_Plugins files will be copied automatically):
dotnet build

Usage

  1. Install the package.
  2. Restart your Umbraco application.
  3. Navigate to the Settings section in the Umbraco backoffice.
  4. Open the Redirect Manager dashboard.
  5. Add, edit, test, or delete redirects as needed, or import/export CSV files for bulk changes.

Status Codes

Code Description
301 Permanent Redirect - Use when a page has permanently moved
302 Temporary Redirect - Use when a page has temporarily moved
404 Not Found - Returns a 404 error for the URL
410 Gone - Indicates the resource is permanently gone

Configuration

No additional configuration required. The plugin works out of the box.

Database

The plugin creates a table called RedirectManagerEntries with the following structure:

  • Id (int, PK)
  • OldUrl (nvarchar)
  • NewUrl (nvarchar, nullable)
  • StatusCode (int)
  • CreatedDate (datetime)
  • UpdatedDate (datetime)
  • IsActive (bit)

License

MIT License

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Optional: To avoid Co-authored-by: Cursor in commit messages (e.g. when using Cursor IDE), install the prepare-commit-msg hook:

cp scripts/prepare-commit-msg.sample .git/hooks/prepare-commit-msg && chmod +x .git/hooks/prepare-commit-msg
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.10.2 89 8/21/2026
1.10.1 97 8/17/2026
1.10.0 92 8/17/2026
1.9.1 137 7/28/2026
1.9.0 185 7/22/2026
1.8.1 125 7/13/2026
1.8.0 100 7/13/2026
1.7.0 105 7/9/2026
1.6.0 109 7/9/2026
1.5.0 113 7/8/2026
1.4.0 111 7/8/2026
1.3.1 124 7/2/2026
1.2.33 117 7/1/2026
1.2.32 154 6/10/2026
1.2.31 126 6/10/2026