hello,
my english not that well ..
im building asite, and now i need to use ahtaccess
can someone please giv me acode That could make

site.com/download.php?page=idorname

looks like

site.com/idorname

in htaccess
and again
my english not that well ...
sorry for mistakes
thanks to helpers
Regards,Hanino .

Did you find an answer to this? If not, here's a suggestion:

RewriteEngine On
RewriteRule ^([a-zA-Z0-9]+)$ download.php?page=$1
RewriteRule ^([a-zA-Z0-9]+)/$ download.php?page=$1

The first covers the example you said, ie:
site.com/idorname

and the second covers the chance of a trailing slash, ie
site.com/idorname/

Hope it helps,

Martin

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.