Joomla联系表格错误
大家好,
我有一个问题,我在joomla的联系表格。过去8个月我用过它,没有任何问题。但是从最后1-2周开始它不起作用。
当我点击发送按钮时,它会给我这个错误:
未找到
在此服务器上找不到请求的URL /info@mysite.com。
此外,在尝试使用ErrorDocument处理请求时遇到404 Not Found错误。
在这个错误中,我检查了我的网址,我的网址是:www.mysite.com/info@mysite.com这是正常的吗?
我将网站更新为最新的joomla版本。
您有什么建议吗? ,关于这个问题?
Hello everyone ,
I have a question my contact form in joomla. Last 8 months i used it and there isn't any problem. But from last 1-2 week it doesn't work.
When i click the send button , it's give me this error :
Not Found
The requested URL /info@mysite.com was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
In this error , i checked my url and my url is : www.mysite.com/info@mysite.com is it normal ?
I updated website to the latest joomla version.
Do you have any suggestion , about this problem ?
您的电子邮件链接或表单缺少mailto:
协议:
You have an email link or form that's missing themailto:
protocol:
<a href="info@mysite.com">
<form action="info@mysite.com">
您需要添加协议:
You need to add the protocol:
<a href="mailto:info@mysite.com">
<form action="mailto:info@mysite.com">
>