为了节省网站的宽带,有时候需要屏蔽一些老外的访问,当然,也可能对英文的蜘蛛造成影响,不过还是做个备份,保存一下。
下面这段代码可以禁止非中文浏览器用户访问网站
添加在 .htaccess 中即可禁止外国人访问我们的网站啦。
[box type="info"]RewriteCond %{} ^en.*$ [NC]
RewriteRule ^/?$ index_en.htm [R=301,L][/box]
可以判断浏览者使用的浏览器,从而达到屏蔽非中文浏览器
继续阅读 →
淘宝有淘宝助理,拍拍有拍拍助理,magento也有个本地化编辑软件Store Manager for Magento,它可以将magento的产品、客户、订单信息下载到本地进行编辑后再上传到magento网店,很方便。
下载地址:free-download
1.LAMP中,wordpress伪静态无法使用,报404错误的解决方法。
编辑apache的httpd.conf
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory “目录”>
#
# Possible values for the Options directive are “None”, “All”,
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that “MultiViews” must be named *explicitly* — “Options All”
# doesn’t give it to you.
#
# The Options directive is both complicated and important. Please see
# docs/2.2/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks
继续阅读 →