Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mavimo/sculpin-redirect-bundle
Sculpin Redirect Bundle
https://github.com/mavimo/sculpin-redirect-bundle
Last synced: about 2 months ago
JSON representation
Sculpin Redirect Bundle
- Host: GitHub
- URL: https://github.com/mavimo/sculpin-redirect-bundle
- Owner: mavimo
- Created: 2014-01-01T19:18:11.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-07-26T16:27:54.000Z (over 9 years ago)
- Last Synced: 2024-12-01T04:52:13.214Z (about 2 months ago)
- Language: PHP
- Size: 158 KB
- Stars: 6
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sculpin Redirect Bundle
## Setup
Add this bundle in your ```sculpin.json``` file:
```json
{
// ...
"require": {
// ...
"mavimo/sculpin-redirect-bundle": "@dev"
}
}
```and install this bundle running ```sculpin update```.
Now you can register the bundle in ```SculpinKernel``` class available on ```app/SculpinKernel.php``` file:
```php
class SculpinKernel extends \Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel
{
protected function getAdditionalSculpinBundles()
{
return array(
'Mavimo\Sculpin\Bundle\RedirectBundle\SculpinRedirectBundle'
);
}
}
```## How to use
In content that you import you can setup redirect items using:
```
redirect:
- alias-path.html
- old-path.html
```Then create a ```redirect.html``` file in your theme with the following content:
```html
{% spaceless %}
{% endspaceless %}
```Now if a user visit the a ```alias-path.html```will be redirect on original page.