How can i rewrite this: https://www.example.com/post.php?post=1467635139
Asked
Active
Viewed 23 times
-3
-
Please search the site because this has been asked and answered already before several times. – PeeHaa Oct 19 '16 at 08:12
-
1Possible duplicate of [Reference: mod\_rewrite, URL rewriting and "pretty links" explained](http://stackoverflow.com/questions/20563772/reference-mod-rewrite-url-rewriting-and-pretty-links-explained) – Croises Oct 19 '16 at 08:24
1 Answers
0
Although this kind of question is answered before on this site but for your specific url.
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([\w-]+)([\d]+)$ $1.php?id=$2 [QSA,L]

Abhishek Gurjar
- 7,426
- 10
- 37
- 45