Thread CGI::Application: Suchmaschinenfreundliche URL (9 answers)
Opened by MartinR at 2006-08-19 19:30

topeg
 2006-08-20 01:41
#8568 #8568
User since
2006-07-10
2611 Artikel
BenutzerIn

user image
Es geht auch so:
Code: (dl )
my %options=$ENV{"PATH_INFO"}=~m|/(\w+)-(\w+)|gs;

Zumindest funktioniert das bei mir gut (Apache,thttpd,IIS).

ach ja der Aufruf ist wie du es wünschst:
Code: (dl )
script_name/A1-B1/A2-B2

in %options steht dann drin:
Code: (dl )
1
2
$options{A1}="B1";
$options{A2}="B2";
\n\n

<!--EDIT|topeg|1156024509-->

View full thread CGI::Application: Suchmaschinenfreundliche URL