I am trying to make the url change, and STAY that way.
I would like to change url's of this type:
[code]http://www.domain.com/someword/somenumber[/codel]
into...
I have that working, but what if I want the url in the address bar to change to:
AND STAY THAT WAY, while actually routing me to:
Is this possible?
Is mod_rewrite what I need?
Or something else.
I have seen many sites that use Perl, that DO NOT have the cgi-bin/script.cgi format on their pages.
How do they do it?
I would like to change url's of this type:
[code]http://www.domain.com/someword/somenumber[/codel]
into...
Code:
http://www.domain.com/cgi-bin/someword.cgi?id=somenumber
Code:
http://www.domain.com/someword/somenumber
Code:
http://www.domain.com/cgi-bin/someword.cgi?id=somenumber
Is mod_rewrite what I need?
Or something else.
I have seen many sites that use Perl, that DO NOT have the cgi-bin/script.cgi format on their pages.
How do they do it?
Comment