-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
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
能否支持SocialProfile的头像 #58
Comments
SocialProfile 的 Avatar URL 格式是什么? |
这是来自QQ邮箱的假期自动回复邮件。
你好,我最近正在休假中,无法亲自回复你的邮件。我将在假期结束后,尽快给你回复。
|
我加了一个 $wgFlowThreadConfig['Avatar']='http://www.wmuwiki.com/medf/images/avatars/my_wiki_${userid}_l.png'; 关于文件格式和默认头像的问题,由于 FlowThread 是直接前端合成 URL,这个比较麻烦,可以考虑给服务器用的 http server 加几条 rule。比如如果 nginx 的话可以: location /images/avatars {
try_files $uri.png $uri.jpg default.png;
} Apache 的话用 RewriteRule 应该也能做到类似效果 |
我在解决文件格式和默认头像时候遇到了头像不重定向问题,最后终于解决了。 location ~ ^\/.+$ {
if ($request_uri ~ ^/images) { break; }
if ($request_uri ~ ^/resources) { break; }
if ($request_uri ~ ^/index\.php) { break; }
rewrite ^/(.+)$ /index.php?title=$1 last;
} 使用后,mediawiki会将静态资源的调用路径都当成创建页面的名称。 最后我将伪静态代码改为 location / {
try_files $uri $uri/ /index.php$is_args$query_string;
} 就解决了所有问题,静态资源也不再需要使用 |
如题
The text was updated successfully, but these errors were encountered: