Sergio Pellegrini
Sergio Pellegrini

Reputation: 87

.htaccess mod rewrite url

I would like to write a url from Original URL

www.xyz.com/folder/articles?id=1221 

to rewrite URL

www.xyz.com/folder/article-title-1221.html

Would this be possible? I am wanting to creates dynamic pages based on the id in the url.

Thanks in advance

Upvotes: 0

Views: 119

Answers (1)

Cyclonecode
Cyclonecode

Reputation: 30001

Try this:

 RewriteRule folder/article-title-([0-9]+)\.html$ folder/articles?id=$1 [L]

Upvotes: 1

Related Questions