と の 2 つの変数http://sb1.dev.codeanywhere.net/~a70097sb/hc/onlinestatus/image.php
を必要とする PHP スクリプトがあります。私のファイルは と同じディレクトリにあります。GET
ign
style
.htaccess
image.php
フォームのリクエストをhttp://sb1.dev.codeanywhere.net/~a70097sb/hc/onlinestatus/{style}/{ign}.png
に書き換えてほしいhttp://sb1.dev.codeanywhere.net/~a70097sb/hc/onlinestatus/image.php?style={style}&ign={ign}
。mod_rewrite の経験がなく、Google で見つけたチュートリアルを使用しても動作させることができなかったので、どうすればよいでしょうか。
これを試してみましたが、うまくいきませんでした.404ページが表示されました:
Options +FollowSymlinks -MultiViews
RewriteEngine on
RewriteRule ^([^.]*)/([^.]*)\.png$ image.php?style=$1&ign=$2 [L,NC]