Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/area17/twill-capsule-redirections

A Twill Capsule to manage and handle application redirections
https://github.com/area17/twill-capsule-redirections

Last synced: 3 days ago
JSON representation

A Twill Capsule to manage and handle application redirections

Awesome Lists containing this project

README

        

# Redirections
## Twill Capsule

### Description

This Capsule allows you to allow your users to setup their own redirections.

![Screenshot 1](docs/screenshot01-1.png)

![Screenshot 2](docs/screenshot02-0.png)

## Installing

### Clone the repository inside your app/Twill/Capsules folder.

```
cd app/Twill/Capsules
git clone https://github.com/area17/twill-capsule-redirections.git
mv twill-capsule-redirections Redirections
```

### Enable the Capsule in config/twill.php:

``` php
'capsules' => [
'list' => [
[
'name' => 'Redirections',
'enabled' => true,
],
...
```

### Import the redirector middleware:

``` php