Pretty URL's
RewriteEngine On
# ----------------------------------------
# 1. Redirect /post/?item=slug and /post/index.php?item=slug → /post/slug
RewriteCond %{THE_REQUEST} \s/post/(index\.php)?\?item=([^&\s]+) [NC]
RewriteRule ^post/?$ /post/%2? [R=301,L]
# ----------------------------------------
# 2. Internally rewrite /post/slug → /post/index.php?item=slug
RewriteRule ^post/([^/]+)/?$ post/index.php?item=$1 [L,QSA]<base href="/">
<!-- OR if you're publishing to a subfolder: -->
<base href="/subfolder/">Last updated
Was this helpful?

