Apache-2.2
Apache:使用請求的目錄作為參數
這是我想做的:
如果使用者轉到
www.example.com/thislocation
,我想重定向到特定腳本並將其“thislocation”作為參數。因此,如果使用者導航到
www.example.com/thislocation
,我想重定向到www.example.com/cgi-bin/test.pl?parameter=thislocation
,類似地,如果使用者導航到www.example.com/thatlocation
,我想重定向到www.example.com/cgi-bin/test.pl?parameter=thatlocation
。Apache可以做到這一點嗎?
您可以通過使用 .htaccess 來實現這一點,程式碼如下:
RewriteEngine on RewriteRule ^(.*)$ /cgi-bin/test.pl?parameter=$1 [L]