2

我刚刚意识到我有一个网站,在 /member/register 上有一个在线默认会员资料表格

我不使用这些,而是​​使用 Zoo Visitor 使用模板,并且我一生都找不到可以禁用默认模板的地方。我需要禁用这些,因为它们正在被机器人发现。

有什么建议么?

谢谢

4

3 回答 3

3

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.

于 2014-02-23T11:39:09.913 回答
3

我通过使配置文件触发器完全随机来做到这一点。

在您的配置文件中添加:

$config['profile_trigger'] = rand(0,time());
于 2013-06-04T14:41:15.183 回答
2

我通过 htaccess 禁用:

# Prevent direct access to EE Member area
# ------------------------------
RewriteCond %{REQUEST_URI} (member)
RewriteRule ^(.*)$ http://%{SERVER_NAME}/404 [R=301,L]
于 2013-06-04T15:12:28.470 回答