51小说网 www.51xsw.com,左岸读书无错无删减全文免费阅读!
html[r=302,l]
来源–catswhocode/woueb
n–denynorefererrequests[stopspamcomments!]–拒绝垃圾留言!
这是一个比下文“s”词条更简便的防spam方法。其原理是,如果留言者不公开来源,即是用机器留言的,就屏蔽之。就这么简单。
123456rewriteengineonrewritecond%{requestmethod}postrewritecond%{requesturi}。wp-comments-post\。php*rewritecond%{httpreferer}!。*yourblog。*[or]rewritecond%{httpuseragent}^$rewriterule(。*)^%{remoteaddr}/$[r=301,l]
来源–wprecipes
o–forcefileswhenopeningto"saveas"–用“另存为”方式打开文档
有时候你空间里的一些文件,比如音乐、视频文件,点开后会有软件自动打开这个文件。如果你不想自动打开,这个规则能把文件强制为另存为方式下载。
1addtypeapplication/octet-stream。avi。mpg。mov。pdf。xls。mp4
来源–askapache
p–protectyour。htaccessfile–保护。htaccess文件
如果你的博客已经做好的十足的防护措施,是不是也要考虑一下保护你的。htaccess文件呢?黑客也可能通过这个文件发起攻击。下面这个规则能禁止下载。htaccess文件。
123456#stronghtaccessprotection<files"^。*\。([hh][tt][aa])">orderallow,denydenyfromallsatisfyall</files>
来源-perishablepress
q–quicyoursite"sloadingtimebycaching–设置缓存
下面这个链接有详细的教程,教你如何给wordpress博客设置缓存。
链接–samaxes
r–redirecttootherpagesonyoursite–301重定向1redirectmatch301^/blog/。*$domain。tld/target。html
来源–perishablepress
s-spam!–阻止垃圾留言
通过。htaccess来禁止spam是个好办法。下面这个链接给出了一个spam黑名单,复制到你的。htaccess里,你就能防止绝大部分的垃圾留言。
来源-perishablepress
t–setthetimezoneoftheserver–设置服务器时区
译者:代码给出的是把tz值设置为美国时间的代码,如果服务器在中国,你可以改为asia/shanghai。
1sete女tzamerica/indianapolis
来源–askapache
u–remove/category/fromyourcategoryurl–简化wp分类页面地址
wordpress的分类页面地址里有一个/category/,会不会觉得这很多余呢?下面这个代码就能去掉它!
1redirectmatch301^/category/(。+)$askapache/$1
或者
1rewriterule^category/(。+)$askapache/$1[r=301,l]
来源-askapache
v–valiantlyautomaticallyfixurlspellingmistakes–修复错误地址
这个代码能自动检查英文地址的拼写错误。
123<ifmodulemodspeling。c>checkspellingon</ifmodule>
来源–vortexmind
w–redirectfromwhatevertowhatever–去掉网址前面的
使用301转跳,实现网址标准化。
12345#permanentlyredirectfromwwwdomaintonon-wwwdomainrewriteengineonoptions+followsymlinksrewritecond%{httphost}^www\。domain\。tld$[nc]rewriterule^(。*)$domain。tld/$1[r=301,l]
来源-stupidhtaccesstricks
x–makeyourwp-login。phppagexenophobic–限制他人访问wp-login
xenophobic:“排外,仇视陌生人”
我觉得你应该适当使用这个规则。如果你不是多人博客,可以限制他人访问登录页面,以达到更高的安全性。
12345<fileswp-login。php>orderdeny,allowdenyfromallallowfrom123。456。789。0</files>
来源–reaper-x
y–easilyrenameyour。htaccessfile–重命名。htaccess文件
如果你的服务器不接受以句点开头的文件怎么办?重命名它呗!下面这个代码能实现。htaccess文件的重命名。
12#renamehtaccessfiles<code>accessfilenameht。access
来源–perishablepress
z–sayzygoteinyour。htaccessfile–在。htaccess里写注释
你可能会想在。htaccess文件里做些解释,好让别人能看懂。那怎么做注释呢?请看下面的代码:
1#see-thisisacomment-youcanonlyuselettersandnumbersand-andthatiswhytherearenocommas
要注意的是注释里只能写字母、数字与下划线
译者后记:原文的作者看样子也是经过收集才写成这篇文章的。如果你看了原文,请你注意,原文的有些代码里有一些多余或错误代码。我在本译文里都已做了修正。
html[r=302,l]
来源–catswhocode/woueb
n–denynorefererrequests[stopspamcomments!]–拒绝垃圾留言!
这是一个比下文“s”词条更简便的防spam方法。其原理是,如果留言者不公开来源,即是用机器留言的,就屏蔽之。就这么简单。
123456rewriteengineonrewritecond%{requestmethod}postrewritecond%{requesturi}。wp-comments-post\。php*rewritecond%{httpreferer}!。*yourblog。*[or]rewritecond%{httpuseragent}^$rewriterule(。*)^%{remoteaddr}/$[r=301,l]
来源–wprecipes
o–forcefileswhenopeningto"saveas"–用“另存为”方式打开文档
有时候你空间里的一些文件,比如音乐、视频文件,点开后会有软件自动打开这个文件。如果你不想自动打开,这个规则能把文件强制为另存为方式下载。
1addtypeapplication/octet-stream。avi。mpg。mov。pdf。xls。mp4
来源–askapache
p–protectyour。htaccessfile–保护。htaccess文件
如果你的博客已经做好的十足的防护措施,是不是也要考虑一下保护你的。htaccess文件呢?黑客也可能通过这个文件发起攻击。下面这个规则能禁止下载。htaccess文件。
123456#stronghtaccessprotection<files"^。*\。([hh][tt][aa])">orderallow,denydenyfromallsatisfyall</files>
来源-perishablepress
q–quicyoursite"sloadingtimebycaching–设置缓存
下面这个链接有详细的教程,教你如何给wordpress博客设置缓存。
链接–samaxes
r–redirecttootherpagesonyoursite–301重定向1redirectmatch301^/blog/。*$domain。tld/target。html
来源–perishablepress
s-spam!–阻止垃圾留言
通过。htaccess来禁止spam是个好办法。下面这个链接给出了一个spam黑名单,复制到你的。htaccess里,你就能防止绝大部分的垃圾留言。
来源-perishablepress
t–setthetimezoneoftheserver–设置服务器时区
译者:代码给出的是把tz值设置为美国时间的代码,如果服务器在中国,你可以改为asia/shanghai。
1sete女tzamerica/indianapolis
来源–askapache
u–remove/category/fromyourcategoryurl–简化wp分类页面地址
wordpress的分类页面地址里有一个/category/,会不会觉得这很多余呢?下面这个代码就能去掉它!
1redirectmatch301^/category/(。+)$askapache/$1
或者
1rewriterule^category/(。+)$askapache/$1[r=301,l]
来源-askapache
v–valiantlyautomaticallyfixurlspellingmistakes–修复错误地址
这个代码能自动检查英文地址的拼写错误。
123<ifmodulemodspeling。c>checkspellingon</ifmodule>
来源–vortexmind
w–redirectfromwhatevertowhatever–去掉网址前面的
使用301转跳,实现网址标准化。
12345#permanentlyredirectfromwwwdomaintonon-wwwdomainrewriteengineonoptions+followsymlinksrewritecond%{httphost}^www\。domain\。tld$[nc]rewriterule^(。*)$domain。tld/$1[r=301,l]
来源-stupidhtaccesstricks
x–makeyourwp-login。phppagexenophobic–限制他人访问wp-login
xenophobic:“排外,仇视陌生人”
我觉得你应该适当使用这个规则。如果你不是多人博客,可以限制他人访问登录页面,以达到更高的安全性。
12345<fileswp-login。php>orderdeny,allowdenyfromallallowfrom123。456。789。0</files>
来源–reaper-x
y–easilyrenameyour。htaccessfile–重命名。htaccess文件
如果你的服务器不接受以句点开头的文件怎么办?重命名它呗!下面这个代码能实现。htaccess文件的重命名。
12#renamehtaccessfiles<code>accessfilenameht。access
来源–perishablepress
z–sayzygoteinyour。htaccessfile–在。htaccess里写注释
你可能会想在。htaccess文件里做些解释,好让别人能看懂。那怎么做注释呢?请看下面的代码:
1#see-thisisacomment-youcanonlyuselettersandnumbersand-andthatiswhytherearenocommas
要注意的是注释里只能写字母、数字与下划线
译者后记:原文的作者看样子也是经过收集才写成这篇文章的。如果你看了原文,请你注意,原文的有些代码里有一些多余或错误代码。我在本译文里都已做了修正。