If you have a blog on WordPress , you've probably already noticed that your URL comes in the format /year/month/day/post url . This format creates longer links, and this date stamp can be detrimental to your site, many users look at the link and select the site with the latest content, so even if you keep your posts up to date it can impact the reach of your articles.

In this article we'll learn how to configure WordPress to use a simpler url format and redirect posts already indexed or shared to the new format using the .htaccess .

Setting up permanent links in WordPress

Enter your WordPress admin panel and change to the desired format, in this article we will use the simple format, just with the post name in the URL:

/%postname%/

Setting up permanent links in WordPress

Redirecting old links using mod_rewrite in .htaccess

Now let's add a little configuration to our .htaccess (It is located at the root of your WordPress installation).

RewriteRule ^([0-9] +)/([0-9] +)/([0-9] +)/(.*)$ /$4[R=301,NC,L]

Your file should look like this:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^([0-9] +)/([0-9] +)/(.*)$ /$3[R=301,NC,L]
RewriteRule ^index.php$ -[L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php[L]
</IfModule>

Tip: If you use some SEO optimization, performance or redirection extension in WordPress, most likely your file is much larger than the example above, remember to put the line right at the beginning of the file for the redirect to work.

Test some old URLs and see if your redirect is working correctly, to monitor for possible 404 errors check out the article: How to track 404 errors and pages not found in Google Analytics

0 0 votos
Nota do Artigo
Subscribe
Notify of
guest

0 Comentários
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x