Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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.