We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
既然路由是针对应用的,那么在应用admin里开启路由
admin
\think\facade\Route::get('captcha/[:id]', "\\think\\captcha\\CaptchaController@index");
那么访问验证码的地址应该是xxx.com/admin/captcha.html 所以验证码helper.php的captcha_src中
xxx.com/admin/captcha.html
return Route::buildUrl('/captcha' . ($config ? "/{$config}" : ''));
这里的路径是不是不能直接是/captcha呢? 建议针对多应用改进. 我现在改为:
/captcha
return Route::buildUrl('./captcha' . ($config ? "/{$config}" : ''));
请问这样会不会有其他问题呢?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
既然路由是针对应用的,那么在应用
admin
里开启路由那么访问验证码的地址应该是
xxx.com/admin/captcha.html
所以验证码helper.php的captcha_src中
这里的路径是不是不能直接是
/captcha
呢?建议针对多应用改进.
我现在改为:
请问这样会不会有其他问题呢?
The text was updated successfully, but these errors were encountered: