I would like to make my URLs pretty with htaccess.
I have only one variable id
. So the pages are like index.php?id=1
, index.php?id=2
etc.
What I would like them to be is something like index/1/
, index/2/
- like folders, instead of the id
variable...
How can I accomplish that using htaccess rewrite URLs?
I was trying to do it like that:
<IfModule mod_rewrite.c>
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^([^/]+) index.php?id=$1[L]
</IfModule>
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…