你访问的站点未开启独立手机端
你访问的站点为响应式站点,直接输入网站即可手机访问
返回首页    返回上一页

支付宝红包领取方法

首先,打开支付宝首页搜索“8831244”,即可领红包,红包有3种;实体店通用红包、余额宝红包、花呗红包,都是随机金额的,友情提醒:领取到的红包后尽快使用哦!!!

支付宝红包

搜索“8831244”,会出现下图字样
支付宝红包
点击【搜索“8831244”,天天领红包】,就会看到红包了金额,友情提醒:领取到的红包后尽快使用哦!!!

支付宝红包

正常情况下,我们领到了并不会马上使用,要到店铺了才会用;到店铺的时候,我们可以点击扫一扫商家的二维码付款,也可以出示自己的付款码让商家扫;

支付宝红包

如果你的付款方式选择的是余额,或者银行卡,系统会提示你“有余额宝红包未使用”或者“有花呗红包未使用”的字样,点击【立即使用】即可。

支付宝红包

在支付过之后,还会随机有一个“奖励大红包”,是随机的并不是100%,点击【选我】。

如果实在没有地方扫码,就打赏给我把,支付宝扫描下面二维码即可,获取多少红包就在红包的基础上+0.1元就可以使用了,不然3天后就过期了哦

zfb.jpg

友情提醒:此红包每天可领取一次,必须使用之后方可领取!!!
Emlog伪静态规则[iis / nginx],Emlog怎么设置伪静态?
舍力博客
Emlog伪静态规则[iis / nginx],Emlog怎么设置伪静态?
2015-8-15 舍力
Emlog默认不能生成静态文件,不过好像有生成静态页面的相关插件,该插件舍力就先不研究,今天舍力给大家分享一下Emlog在各种环境下的伪静态规则,大家都知道,通过伪静态可以让博客文章网址变得对搜索引擎更加友好,据网上的seoer们说,好的伪静态有利于搜索引擎优化,具体有没有博主可自己去探讨。注:伪静态必须空间支持且在后台-设置中开启伪静态。




IIS6:(iis6主机请联系主机商修改规则,部分主机支持httpd.ini,请将下列代码保存为httpd.ini或者下载附件中的httpd.ini上传到博客根目录)

[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
RewriteRule /robots.txt(.*) /robots.txt$1 [L]
RewriteRule /rss.php(.*) /rss.php$1 [L]
RewriteRule /tb.php(.*) /tb.php$1 [L]
RewriteRule /favicon.ico /favicon.ico [L]
RewriteRule /xmlrpc.php(.*) /xmlrpc.php$1 [L]
RewriteRule /wlwmanifest.xml /wlwmanifest.xml [L]
RewriteRule /(t|m)$ /$1/ [R]
RewriteRule /(admin|content|include|t|m)/(.*) /$1/$2 [L]
RewriteRule /install.php(.*) /install.php$1 [L]
RewriteRule /emlog_toolkit.php(.*) /emlog_toolkit.php$1 [L]
RewriteRule /up(\d.\d.\d)to(\d.\d.\d).php(.*) /up$1to$2.php$3 [L]
RewriteRule ^/$ /index.php [L]
RewriteRule /(.*) /index.php/$1 [L]

支持.htaccess的IIS6服务器规则:
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [L]

-=-【注】关于IIS6规则说明:由于IIS6不支持.htaccess的一些判断规则,因此只能事先处理一些会被正常访问的目录或者文件。有些地方可能需要做修改: 1、如果你有其他非emlog文件,因为添加如上规则而不能正常访问,要想使它们能正常访问的,则添加一条规则在第5行后面,参考第五行
RewriteRule /rss.php(.*) /rss.php$1 [L]

将rss.php修改为你要访问的文件即可

如果你有其他非emlog目录,因为添加如上规则而不能正常访问,要想使它们能正常访问的,则参考第10、11行,将目录添加进来(用|隔开目录):
RewriteRule /(t|m|admin)$ /$1/ [R] 
RewriteRule /(admin|content|include|t|m)/(.*) /$1/$2 [L]

2、如果你的博客在子目录,那么需要将所有目录都改为子目录的,比如你的博客在emlog目录下,那么规则如下:
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
RewriteRule /emlog/rss.php(.*) /emlog/rss.php$1 [L]
RewriteRule /emlog/tb.php(.*) /emlog/tb.php$1 [L]
RewriteRule /emlog/favicon.ico /emlog/favicon.ico [L]
RewriteRule /emlog/xmlrpc.php(.*) /emlog/xmlrpc.php$1 [L]
RewriteRule /emlog/wlwmanifest.xml /emlog/wlwmanifest.xml [L]
RewriteRule /emlog/(t|m)$ /emlog/$1/ [R]
RewriteRule /emlog/(admin|content|include|t|m)/(.*) /emlog/$1/$2 [L]
RewriteRule /emlog/install.php(.*) /emlog/install.php$1 [L]
RewriteRule /emlog/emlog_toolkit.php(.*) /emlog/emlog_toolkit.php$1 [L]
RewriteRule /emlog/up(\d.\d.\d)to(\d.\d.\d).php(.*) /emlog/up$1to$2.php$3 [L]
RewriteRule ^/emlog/$ /emlog/index.php [L]
RewriteRule /emlog/(.*) /emlog/index.php/$1 [L]

-=-nginx:(nginx主机请联系主机商更改规则,部分主机可能支持自定义规则)
location / {
index index.php index.html;
if (!-e $request_filename)
{
rewrite ^/(.+)$ /index.php last;
}
}

-=-IIS7/7.5(Microsoft) 规则,创建文件web.config,填写下面内容,放入根目录即可
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="emlog 4.0.1 for IIS7.5" stopProcessing="true">
<match url="." ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="/index.php" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
发表评论:
昵称

邮件地址 (选填)

个人主页 (选填)

内容