https://github.com/mavimo/sculpin-redirect-bundle
Sculpin Redirect Bundle
https://github.com/mavimo/sculpin-redirect-bundle
Last synced: 3 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 (over 12 years ago)
- Default Branch: master
- Last Pushed: 2015-07-26T16:27:54.000Z (almost 11 years ago)
- Last Synced: 2025-12-21T12:23:43.632Z (6 months ago)
- Language: PHP
- Size: 158 KB
- Stars: 6
- Watchers: 1
- 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.