我刚刚意识到我有一个网站,在 /member/register 上有一个在线默认会员资料表格
我不使用这些,而是使用 Zoo Visitor 使用模板,并且我一生都找不到可以禁用默认模板的地方。我需要禁用这些,因为它们正在被机器人发现。
有什么建议么?
谢谢
我刚刚意识到我有一个网站,在 /member/register 上有一个在线默认会员资料表格
我不使用这些,而是使用 Zoo Visitor 使用模板,并且我一生都找不到可以禁用默认模板的地方。我需要禁用这些,因为它们正在被机器人发现。
有什么建议么?
谢谢
We've also done this which seems to work:
In the CP go to Members > Preferences and in the general configuration block there is a field for 'Profile Triggering Word'. Adding a '#' to this prevents the default templates showing.
我通过使配置文件触发器完全随机来做到这一点。
在您的配置文件中添加:
$config['profile_trigger'] = rand(0,time());
我通过 htaccess 禁用:
# Prevent direct access to EE Member area
# ------------------------------
RewriteCond %{REQUEST_URI} (member)
RewriteRule ^(.*)$ http://%{SERVER_NAME}/404 [R=301,L]