mavimo / sculpin-redirect-bundle
Sculpin Redirect Bundle
Installs: 5 399
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 3
Forks: 2
Open Issues: 2
Requires
- php: >=5.3.2
This package is auto-updated.
Last update: 2024-10-14 09:02:51 UTC
README
Setup
Add this bundle in your sculpin.json
file:
{ // ... "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:
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:
<!DOCTYPE html> {% spaceless %} <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta http-equiv="refresh" content="0;url={{ page.destination.url }}" /> </head> </html> {% endspaceless %}
Now if a user visit the a alias-path.html
will be redirect on original page.