Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/area17/twill-capsule-redirections
- Owner: area17
- License: mit
- Created: 2022-04-28T13:37:57.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-04-28T13:54:26.000Z (over 2 years ago)
- Last Synced: 2024-08-03T17:12:36.690Z (3 months ago)
- Language: PHP
- Size: 370 KB
- Stars: 1
- Watchers: 6
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-twill - Redirections - A Twill Capsule to manage and handle application redirections (Packages)
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