Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Article title name as URL? Re: Article title name as URL?

#132041
Kitty Giraudel
Participant

You can do this manually with PHP. This is called a slug.

Basically, all you have to do is switch it to lower case, remove special chars and replace spaces by dashes. :)

[Here](http://stackoverflow.com/questions/2955251/php-function-to-make-slug-url-string) is something that should help you.