1

サーバー上の1つのディレクトリ(/temp/downloads/target)へのHTTP GETリクエストを取得して、perl cgiスクリプトにリダイレクトしようとしています....基本的にリクエストを作成しています: http://www.myserver.com/ cgi/perlscript.cgi?path=ターゲット

htaccessで簡単にできますか?

4

1 に答える 1

2

次のことを試してください。

RewriteBase /

RewriteEngine on
Options +FollowSymLinks

RewriteRule ^temp/downloads/(.*)$ /cgi/perlscript.cgi?path=$1 [L]
于 2013-09-17T20:40:23.050 に答える