Auto 301 to full post permalink? (using /posts/%post_id%/%postname%)

Think I found a solution… Since anything after the %post_id%/__ will redirect to the full slug, a simple RewriteRule in the .htaccess file appears to do the trick. I had to place it above other RewriteRules and this is working for me.

RewriteRule ^post/(\d*)/?\z$ http://noahcoad.com/post/$1/a [R=301,L]

Leave a Comment