nginx1.0.14で 404 Not Foundエラーの対策
エラーメッセージ:
404 Not Found nginx/1.0.14
修正ファイル:
nginx.conf
追加内容:
if (!-e $request_filename)
{
rewrite ^/(.*)index.php(.*)$ $1/index.php?s=$2 last;
break;
}
Coding Changes the World
エラーメッセージ:
404 Not Found nginx/1.0.14
修正ファイル:
nginx.conf
追加内容:
if (!-e $request_filename)
{
rewrite ^/(.*)index.php(.*)$ $1/index.php?s=$2 last;
break;
}