增强WordPress安全性的15个.htaccess代码片段(2)
正如我之前提到的,.htaccess 不仅有利于安全性和重定向,还可以帮助您管理缓存。下面的代码片段来自 Elegant Themes,它通过允许访问者保存某些类型的文件使浏览器缓存成为可能,因此下次访问时他们不必再次下载它们。 # Enables browser caching <IfModule mod_expires.c> ExpiresActive On ExpiresByType image/jpg "access 1 year" ExpiresByType image/jpeg "access 1 year" ExpiresByType image/gif "access 1 year" ExpiresByType image/png "access 1 year" ExpiresByType text/css "access 1 month" ExpiresByType application/pdf "access 1 month" ExpiresByType text/x-javascript "access 1 month" ExpiresByType application/x-shockwave-flash "access 1 month" ExpiresByType image/x-icon "access 1 year" ExpiresDefault "access 2 days" </IfModule> 15.设置自定义错误页面你可以使用.htaccess 在 WordPress 网站上设置自定义错误页面。对于这种方法,您还需要创建自定义错误页(custom-403.html,custom-404.html 在本例中),并上传到你的网站根目录。您可以为所需的任何 HTTP 错误状态代码(4XX 和 5XX 状态代码)设置自定义错误页面。 # Sets up custom error pages ErrorDocument 403 /custom-403.html ErrorDocument 404 /custom-404.html 好了,今天就分享这些 .htaccess 代码片段,如果你有其他不错的片段,欢迎和我们分享! 以上内容由PHP站长网【52php.cn】收集整理供大家参考研究如果以上内容对您有帮助,欢迎收藏、点赞、推荐、分享。 (编辑:ASP站长网) |