Jack Wild
Jack Wild

Reputation: 2122

Make URL alias in Wordpress (or .htaccess)

I have a site running on Wordpress, and I want to create one custom short-url.

If a page URL is www.mysite.com/category/post I want the user to be able to visit www.mysite.com/alias

If there is a 'Wordpress-y' way of doing things, that would be preferable, but I am also able to do it by modifying the .htaccess file.

Thanks

Upvotes: 7

Views: 14289

Answers (2)

AC Capehart
AC Capehart

Reputation: 1360

I realize this is a bit of an old post, and already has an accepted answer, but for those of us not wanting to (or unable to) play with the .htaccess file, it should be noted that there are several viable plugins in this space.

I've used https://wordpress.org/plugins/redirection/ which has 800,000+ installs. There's also https://wordpress.org/plugins/simple-301-redirects/ with 200,000+ installs as well as several others with smaller install bases available at https://wordpress.org/plugins/search/redirect/.

Upvotes: 2

Jack Wild
Jack Wild

Reputation: 2122

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^alias$ category/post [R=301,L]
</IfModule>

Upvotes: 4

Related Questions