Rewrite rule with htaccess

would it be possibe(with htaccess rewrite rule)…a URL like this
www.domain/blog/title
be rewritten to
www.domain/blog/t=title

Of course the user will be able to see only the first in his/her address bar.

Yes, something like:-

RewriteRule ^blog/(.*)$ /blog/?t=$1 [NC,L]

or you could limit what the value is if needed.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.