您的当前位置:TAGS -> .htaccess
  • Internal Server Error错误和.htaccess伪静态的关系

    后端开发2023年05月23日

    最近更新PHP版本从7.3.26到7.3.27遇到的坑记录一下。 通过以往的正常方法开启了伪静态规则,访问网页时却报出下面让人头疼的错误提示: Internal Server Error The server encountered an internal error or misconfiguration and was unable to complet...

  • .htaccess强制https、www、防盗链

    服务器2023年05月11日

    RewriteEngine on #非https访问时强制转https RewriteCond %{HTTP:From-Https} !^on$ [NC] RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L] #非www访问时强制转www...