文章來源:Nginx下只針對logging.php進行https處理的重寫規則
在https server下加入以下配置:
if ($uri !~* "/logging.php$")
{
if ($uri !~* "/logging.php$")
{
rewrite ^/(.*)$ http://$host/$1 redirect;
}在http server下加入以下設定:
if ($uri ~* "/logging.php$")
rewrite ^/(.*)$ https://$host/$1 redirect;
}最後結果就是,使用者會且只會在存取logging.php的情況下,才會透過https存取。有效地避免了arp欺騙、嗅探等方法盜取帳號密碼的行為。
以上就介紹了Nginx下只針對loggingphp進行https處理的重寫規則,包含了nginx,https方面的內容,希望對PHP教學有興趣的朋友有所幫助。 🎜 🎜 🎜