[TOC]
## (一)必备资料
1、经过备案的域名
2、服务器
3、支付宝商户号(或者支付宝个人号申请支付)
## (二)费率是多少?
扣除费率 0.6%,也就是1000元6元钱,最低每1笔1分钱!
## (三)搭建环境工作
>第一步:我们先从 `GitHub` 官方下载一个 `ThinkPHP3.2.3` 源码,网址如下:https://github.com/top-think/thinkphp
第二步:利用 `phpStudy` 搭建环境
第三步:命名虚拟域名为 `tp3`,例如 `http://tp3/Pay/`
第四步:更改根目前下的`.htaccess`文件,正确如下:
```
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>
```
它的目的是,隐藏 `index.php` 否则,我们访问的是`http://tp3/index.php/`
好了,环境搭建好了,我们访问 `http://tp3/`
![mark](http://qiniu.newthink.cc/blog/20170915-222028813.png)
环境搭好了,开工!