.htaccess
Windows サーバーでは、ルールを実行し、PHP をインストールするために Helicon Ape を実行します。.htaccess
ルートディレクトリのファイルに以下の行があります:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^test/(.*)$ test/handle.php?path=$1 [L]
</IfModule>
handle.php
以下のコードをファイルに書きました。
echo $_GET["path"];
exit;
次のようなURLを入力すると、http://mysite.com/test/test.zip
またはhttp://mysite/test/FILENAME.EXT
代わりに印刷FILENAME.EXT
すると、出力として印刷handle.php
されます!! どうしたの?