Tagged Questions
The slug tag has no wiki summary.
49
votes
14answers
4k views
Why do some websites add “Slugs” to the end of URLs?
Many websites, including this one, add what are apparently called slugs - descriptive but as far as I can tell useless bits of text - to the end of URLs.
For example, the URL the site gives for this ...
45
votes
15answers
4k views
How does StackOverflow generate it's SEO-friendly URLs?
What is a good complete Regex or some other process that would take the title:
How do you change a title to be part of the url like Stackoverflow?
And turn it into
...
44
votes
5answers
10k views
In django, what is a “slug”?
When I read django code I often see in models what is called a "slug". I am not quite sure what this is but I do know it has something to do with URL:s. How and when is this slug-thing supposed to be ...
38
votes
15answers
15k views
Turn a string into a valid filename in Python
I have a string that I want to use as a filename, so I want to remove all characters that wouldn't be allowed in filenames, using Python.
I'd rather be strict than otherwise, so let's say I want to ...
28
votes
6answers
18k views
How do I create a slug in Django?
I am trying to create a SlugField in Django.
I created this simple model:
from django.db import models
class test(models.Model):
q = models.CharField(max_length=30)
s = models.SlugField()
...
13
votes
13answers
2k views
How can I create a SEO friendly dash-delimited url from a string?
Take a string such as:
In C#: How do I add "Quotes" around string in a comma delimited list of strings?
and convert it to:
...
12
votes
8answers
7k views
Best way to generate slugs (human-readable IDs) in Rails
You know, like myblog.com/posts/donald-e-knuth.
Should I do this with the built in parameterize method?
What about a plugin? I could imagine a plugin being nice for handling duplicate slugs, etc. ...
10
votes
5answers
761 views
Does the position of a slug in a URL matter?
FOR SEARCH ENGINE OPTIMIZATION PURPOSES, does the location of the slug within a URL matter?
There's no doubt that you could code URL slugs to work properly in any order. I'm more interested to know ...
9
votes
6answers
6k views
How to make Django slugify work properly with Unicode strings?
What can I do to prevent slugify filter from stripping out non-ASCII alphanumeric characters? (I'm using Django 1.0.2)
cnprog.com has Chinese characters in question URLs, so I looked in their code. ...
8
votes
1answer
1k views
Java code/library for generating slugs (for use in pretty URLs)
Web frameworks such as Rails and Django has built-in support for "slugs" which are used to generate readable and SEO-friendly URLs:
Slugs in Rails
Slugs in Django
A slug string typically contains ...
8
votes
11answers
899 views
Good name for “URL-friendly title”?
I'm creating a dynamic website with articles. Each article has a title, like "How does one eat a dog and live with it?", but also something I'm now calling "URL Friendly Title", such as ...
8
votes
5answers
3k views
Is there an easy way to populate SlugField from CharField?
class Foo(models.Model):
title = models.CharField(max_length=20)
slug = models.SlugField()
Is there a built-in way to get the slug field to autopopulate based on the title? Perhaps in the ...
7
votes
4answers
1k views
Slugify and Character Transliteration in C#
I'm trying to translate the following slugify method from PHP to C#:
http://snipplr.com/view/22741/slugify-a-string-in-php/
Edit: For the sake of convenience, here the code from above:
/**
* ...
6
votes
3answers
1k views
URL Slugify alrogithm in C#?
So I have searched and browsed through the slug tag on SO and only found two compelling solution:
Slugify and Character Transliteration in C#
How to convert super- or subscript to normal text in C#
...
6
votes
3answers
805 views
what's the 5 character alphanumeric id in reddit URL?
Whats the 7n5lu in the reddit URL
http://www.reddit.com/r/reddit.com/comments/7n5lu/man_can_fly_if_you_watch_one_video_in_2
how is it generated?
update:
@Gerald, Thanks for the code. I initially ...
5
votes
2answers
523 views
A PHP function to make slugs
I wrote this function to make slugs on a french site, I'd love some feedbacks on the effectiveness or how to improve it.
Thanks you.
function sluggable($str)
{
$before = ...
5
votes
3answers
818 views
How do you remove invalid characters when creating a friendly url (ie how do you create a slug)?
Say I have this webpage:
http://ww.xyz.com/Product.aspx?CategoryId=1
If the name of CategoryId=1 is "Dogs" I would like to convert the URL into something like this:
http://ww.xyz.com/Products/Dogs
...
5
votes
2answers
848 views
Reduce Heroku Compiled Slug Size
I've just updated rails to v2.3.6 on my app under a bamboo-ree-1.8.7 stack and the compiled slug size has grown up to 40.5Mb! Previous to that last git push, the slug size was about 20Mb and was using ...
5
votes
3answers
2k views
ID + Slug name in URL in Rails (like in StackOverflow)
I'm trying to achieve URLs like this in Rails:
http://localhost/posts/1234/post-slug-name
with both ID and slug name instead of either
http://localhost/posts/1234
or
...
5
votes
3answers
318 views
How can I make URLs in Django similar to stackoverflow?
I'm creating a video site. I want my direct urls to a video to look like example.com/watch/this-is-a-slug-1 where 1 is the video id. I don't want the slug to matter though. ...
5
votes
5answers
2k views
Pretty (dated) RESTful URLs in Rails
I'd like my website to have URLs looking like this:
example.com/2010/02/my-first-post
I have my Post model with slug field ('my-first-post') and published_on field (from which we will deduct the ...
5
votes
1answer
451 views
What is the best way to clean a string for placement in a URL, like the question name on SO?
I'm looking to create a URL string like the one SO uses for the links to the questions. I am not looking at rewriting the url (mod_rewrite). I am looking at generating the link on the page.
Example: ...
5
votes
1answer
4k views
Cleaning form data in Django
How can i clean and modify data from a form in django. I would like to define it on a per field basis for each model, much like using ModelForms.
What I want to achieve is automatically remove ...
4
votes
5answers
105 views
Check if a string is a possible abbrevation for a name
I'm trying to develop a python algorithm to check if a string could be an abbrevation for another word. For example
fck is a match for fc kopenhavn because it matches the first characters of the ...
4
votes
2answers
678 views
How to convert super- or subscript to normal text in C#
I'm writing a slug generator for making nice urls. I'd like to convert m² to m2, but in a generic way that does this for all superscript (or subscript), not just a simple replace statement.
Any ...
4
votes
2answers
2k views
URL Friendly Username in PHP?
On my PHP site, currently users login with an email address and a password. I would like to add a username as well, this username they g\set will be unique and they cannot change it. I am wondering ...
4
votes
4answers
1k views
Django slugified urls - how to handle collisions?
I'm currently working on a toy project in Django.
Part of my app allows users to leave reviews. I'd like to take the title of the review and slugify it to create a url.
So, if a user writes a ...
4
votes
2answers
676 views
Validating a slug in Django
I'm guessing this is going to involve regexp or something, but I'll give it a shot. At the minute, a user can break a website by typing something similar to £$(*£$(£@$&£($ in the title field, ...
4
votes
2answers
738 views
Fetching records with slug instead of ID
I'm currently trying to find the best way (in term of usability and performance) when dealing with a situation like fetching records tagged with a specific tag, or category, or something like that.
A ...
4
votes
3answers
2k views
What is the best way to store a unique URL Slug?
I'm trying to generate some url 'slugs' for my website. It's based upon a single piece of user generated text.
Now, i have made my own slug method, so i'm not after some code for that.
What i'm ...
3
votes
1answer
70 views
exclude files in gems from heroku slugs (using .slugignore, heroku)
A rails 3.0.x project I am working with uses a gem that contains a large amount of test data that isn't needed for the heroku deployment. I would like to exclude this from the heroku slug, as it adds ...
3
votes
1answer
162 views
how to end a jquery function on click
I currently using a jQuery slug plugin to create a project slug based on the title box. This works great. What I'm having troube doing is only updating the slug when the user clicks the edit link. ...
3
votes
4answers
685 views
CakePHP - How to do reverse routing with slug?
I am using CakePHP 1.3. I have a Product model. on the DB table among others there are id and slug fields.
If I have a product that is id:37 and slug:My-Product-Title I want the URL for the product ...
3
votes
4answers
1k views
How to create a unique slug in Django
I am trying to create a unique slug in Django so that I can access a post via a url like this:
http://www.mysite.com/buy-a-new-bike_Boston-MA-02111_2
The relevant models:
class ...
3
votes
4answers
196 views
php/regex: “linkify” blog titles
I'm trying to write a simple PHP function that can take a string like
Topic: Some stuff, Maybe some more, it's my stuff?
and return
topic-some-stuff-maybe-some-more-its-my-stuff
As such:
...
3
votes
5answers
196 views
Creating Slugs from Titles?
I have everything in place to create slugs from titles, but there is one issue. My RegEx replaces spaces with hyphens. But when a user types "Hi there" (multiple spaces) the slug ends up ...
3
votes
2answers
419 views
Problem in displaying a URL slug with dash
I made a slug with dash for my stories URLs such as:
http://stackoverflow.com/questions/482636/fetching-records-with-slug-instead-of-id
This is my code to create slug :
function Slugit($title) {
...
3
votes
3answers
674 views
best way to escape and create a slug
im somehow confused in using proper functions to escape and create a slug
i used this :
$slug_title = mysql_real_escape_string()($mtitle);
but someone told me not to use it and use urlencode()
...
3
votes
1answer
176 views
URL Slugs: Redirects or 404s?
Some sites, like here at SO, allow 'bogus' slugs in the URL. Before implementing URL slugs on my site, I have a question of 'best practices'...
Given a structure like ...
3
votes
1answer
689 views
How to create a unique_for_field slug in Django?
Django has a unique_for_date property you can set when adding a SlugField to your model. This causes the slug to be unique only for the Date of the field you specify:
class Example(models.Model):
...
3
votes
3answers
846 views
Should I create a slug on the fly or store in DB?
A slug is part of a URL that describes or titles a page and is usually keyword rich for that page improving SEO. e.g. In this URL ...
2
votes
1answer
34 views
how to Write in Django SlugField with hebrew
i need help how to write Hebrew in SlugField in django models
now i can write only English
something like: hello-world
but i what to write in SlugField = "שלום-עולם"
and the url be like:
...
2
votes
1answer
76 views
CakePHP filter list by slug instead of ID
I'm using CakePHP, this is the structure of my DB:
CarMakes
----------------------------------
ID Slug Name
16 ford Ford
CarModels
----------------------------------
ID Name ...
2
votes
1answer
74 views
Retaining parent slugs in CakePHP
I'm experimenting with SEO friendly URL's in CakePHP as efficiently as I can, I've managed to use the current format, each example uses function view($slug) except for the first example which uses ...
2
votes
1answer
61 views
Stack Overflow, urls how do they work??, do they redirect? [closed]
Possible Duplicate:
Stack Overflow Question Routing
before you jump out... i know questions about stackoverflow urls have been asked 1231234123123123 times. i know because i read all of ...
2
votes
1answer
135 views
Creating a unique random 5 character slug
Hi I have a function that will generate a random string which works fine. What I would like to do is store that string as the primary key in my database. The problem is that I first need to make sure ...
2
votes
1answer
137 views
Rails: Append number to permalink, if permalink already taken
I would like to give John Doe the permalink john-doe-2, if there already is a john-doe-1.
The number should be the next free one to be appended ("john-doe-n")
Currently my permalinks are generated ...
2
votes
2answers
103 views
CakePHP advanced routing
How do I create URLs like this (English as default):
For action index in Categories controller:
/categories
/en/categories
/de/categories
...
for action view in Categories controller:
...
2
votes
2answers
318 views
CakePHP: How to get ID for a row that matches slug?
I have a Model called Posts with a field called slug. I want to create a routing function to basically do this: www.mysite.com/slug. So, I created a Slug class that is used in the routes.php file, ...
2
votes
2answers
565 views
Convert any title to url slug and back from url slug to title
I want to convert any title e.g. of a blog entry to a user friendly url. I used rawurlencode() to do that but it gives me a lot of strange strings like %s.
The algorithm should consider german chars ...