Replace _ with - in almost every url (plus nice tag urls in movabletype)


/ Published in: Apache
Save to your folder(s)

list the exceptions where you don't want to replace in the rewrite rules before the one that matches the underscore, and finish them with [L], otherwise they'll get replaced too.

[N] means rerun the whole replacing stuff once the line matched... careful with that.


Copy this code and paste it in your HTML
  1. RewriteEngine On
  2. RewriteRule ^tag/?$ /browse.html [L]
  3. RewriteRule ^tag/(.*)$ /mt/mt-search.cgi?tag=$1&blog_id=1&IncludeBlogs=1 [L]
  4. RewriteRule ^mt-static(.*)$ - [L]
  5. RewriteRule ^(.*)_(.*)$ $1-$2 [N]

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.