1
.htaccess
のファイルがnginxで動作する問題を解決しました。htaccessをnginxに書き換える設定が動作しない
.htaccess
ファイル
<ifModule mod_rewrite.c>
Allow from 127.0.0.1
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^index(|/)$ index.php
RewriteRule ^logout(|/)$ logout.php
RewriteRule ^keeping/([^/.]+)(|/)$ keeping.php?s=$1
</ifModule>
マイ変換:
location/{
if (!-e $request_filename){
rewrite ^/index(|/)$ /index.php;
}
}
location /logout {
rewrite ^/logout(|/)$ /logout.php;
}
location /kyhsadminpanel {
rewrite ^/keeping/([^/.]+)(|/)$ /keeping.php?s=$1;
}
は動作しません。
は、それは常に... URLのように/kyhsadminpanel/keeping/index
や/kyhsadminpanel/keeping/news
などのために、 "404が見つかりません。" と表示さ