お返事ありがとうございます
急ぎませんので♪ 大丈夫です
とりあえず下記で対応したのですけど
リンクの記事も参考にしたいと思います。
nucleusというソフトのプラグイン(skinfiles/index.php)
action="' . htmlspecialchars($pluginUrl)
→
action="' . htmlspecialchars($pluginUrl).'index.php'
に一括置換で解決しました
taka さん、
おそらく
http://homepage1.nifty.com/yito/namazu/gbook/20041027.1630.html
の話だろうと思います。
申し訳ありませんが、まだ直せていないので回避策はありません。
デフォルトのインデックスに
index.html ,index.htm, index.shtml, index.cgi, index.php
を設定していますが
/index.php
と""で空白のときは通るようですが
それいがいの
/
とかフォルダ名だけで
postすると404エラーがでます
他のサーバでは通ります(linux)。
なにか設定間違っているのでしょうか?
どこを設定すると省略形でpostのできるのでしょうか?
参考に
<form method="POST" action="./">
<p>./
<input type="submit" value="送信" name="B1"></p>
</form>
<form method="POST" action="/">
<p>/
<input type="submit" value="送信" name="B1"></p>
</form>
<form method="POST" action="http://localhost/">
<p>http://localhost/
<input type="submit" value="送信" name="B1"></p>
</form>
<form method="POST" action="/index.php">
<p>/index.php
<input type="submit" value="送信" name="B1"></p>
</form>
<form method="POST" action="./index.php">
<p>./index.php
<input type="submit" value="送信" name="B1"></p>
</form>
<form method="POST" action="">
<p>""
<input type="submit" value="送信" name="B1"></p>
</form>