Socket
Book a DemoInstallSign in
Socket

rack-seo_redirect

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rack-seo_redirect

0.0.1
bundlerRubygems
Version published
Maintainers
1
Created
Source

Rack::SeoRedirect

Rack middleware for making non-www to www (and conversely) redirects and removing trailing slash in urls. Use it if you can not edit Nginx or Apache rewrite rules.

Installation

Add this line to your application's Gemfile:

gem 'rack-seo_redirect'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rack-seo_redirect

Usage

With any Rack application

# config.ru
require 'rack/seo_redirect'
use Rack::SeoRedirect::Www
use Rack::SeoRedirect::TrailingSlash
run MyApp

With Rails

Insert to the top of the Rails middleware stack:

# application.rb
config.middleware.insert 0, Rack::SeoRedirect::Www
config.middleware.insert 0, Rack::SeoRedirect::TrailingSlash

Customization

Rack::SeoRedirect::Www

Your can pass true or false as a parameter to Www middleware. This indicates either you need www in your url or not.

For non-www to www redirect use:

use Rack::SeoRedirect::Www, true

For www to non-www redirect use:

use Rack::SeoRedirect::Www, false

Default is false (www to non-www).

Rack::SeoRedirect::TrailingSlash

Your can pass true or false as a parameter to TrailingSlash middleware. This indicates either you need / in the end of your url or not.

For adding / to the end of urls use:

use Rack::SeoRedirect::TrailingSlash, true

For removing / from the end of urls use:

use Rack::SeoRedirect::TrailingSlash, false

Default is false (removing trailing slash).

Contributing

  • Fork it
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create new Pull Request

FAQs

Package last updated on 29 Oct 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.