Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/agence-adeliom/easy-redirect-bundle
Symfony redirection bundle for EasyAdmin
https://github.com/agence-adeliom/easy-redirect-bundle
easyadmin redirection symfony
Last synced: 20 days ago
JSON representation
Symfony redirection bundle for EasyAdmin
- Host: GitHub
- URL: https://github.com/agence-adeliom/easy-redirect-bundle
- Owner: agence-adeliom
- License: mit
- Created: 2021-09-23T12:52:27.000Z (about 3 years ago)
- Default Branch: 2.x
- Last Pushed: 2024-04-30T09:01:58.000Z (7 months ago)
- Last Synced: 2024-05-21T02:28:04.855Z (6 months ago)
- Topics: easyadmin, redirection, symfony
- Language: PHP
- Homepage:
- Size: 101 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
![Adeliom](https://adeliom.com/public/uploads/2017/09/Adeliom_logo.png)
[![Quality gate](https://sonarcloud.io/api/project_badges/quality_gate?project=agence-adeliom_easy-redirect-bundle)](https://sonarcloud.io/dashboard?id=agence-adeliom_easy-redirect-bundle)# Easy Redirect Bundle
This bundle adds entities for redirects and 404 errors.
For redirects, 404 errors are intercepted and the requested path is looked up. If a match is found it redirects to the found redirect's destination. The count and last accessed date are updated as well. A redirect form type and validation is available as well.
404 errors can be logged as well. Each 404 error is it's own record in the database. The path, full URL, timestamp, and referer are stored. Storing each error as a separate record allows viewing statistics over time and seeing all the referer URLs. When a redirect is created or updated, 404 records that match it's path are deleted.
## Versions
| Repository Branch | Version | Symfony Compatibility | PHP Compatibility | Status |
|-------------------|---------|-----------------------|-------------------|----------------------------|
| `2.x` | `2.x` | `5.4`, and `6.x` | `8.0.2` or higher | New features and bug fixes |
| `1.x` | `1.x` | `4.4`, and `5.x` | `7.2.5` or higher | No longer maintained |## Installation with Symfony Flex
Add our recipes endpoint
```json
{
"extra": {
"symfony": {
"endpoint": [
"https://api.github.com/repos/agence-adeliom/symfony-recipes/contents/index.json?ref=flex/main",
...
"flex://defaults"
],
"allow-contrib": true
}
}
}
```Install with composer
```bash
composer require agence-adeliom/easy-redirect-bundle
```### Setup database
#### Using doctrine migrations
```bash
php bin/console doctrine:migration:diff
php bin/console doctrine:migration:migrate
```#### Without
```bash
php bin/console doctrine:schema:update --force
```## Documentation
### Manage redirect in your Easyadmin dashboard
Go to your dashboard controller, example : `src/Controller/Admin/DashboardController.php`
```php
configRedirectEntry();...
```### Configuration
```yaml
# config/packages/easy_redirect.yaml
easy_redirect:
redirect_class: ~ # Required and must be an instance of "Adeliom\EasyRedirectBundle\Entity\Redirect"
not_found_class: ~ # Required and must be an instance of "Adeliom\EasyRedirectBundle\Entity\NotFound"
model_manager_name: ~ # If a custom model manager is used by default its 'default'# When enabled, when a redirect is updated or created, the NotFound entites with a matching path are removed.
remove_not_founds: true
```## License
[MIT](https://choosealicense.com/licenses/mit/)
## Authors
- [@arnaud-ritti](https://github.com/arnaud-ritti)
## Thanks to
[kbond/ZenstruckRedirectBundle](kbond/ZenstruckRedirectBundle)