Compare commits
2 Commits
338ef6d716
...
f3242717c6
Author | SHA1 | Date |
---|---|---|
milo | f3242717c6 | |
milo | 73df09cf01 |
|
@ -1,9 +0,0 @@
|
|||
<IfModule mod_rewrite.c>
|
||||
Options +FollowSymlinks -Multiviews
|
||||
RewriteEngine On
|
||||
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_URI} !^(.*)\.(gif|jpg|jpeg|png|swf|mp4)$ [NC]
|
||||
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
|
||||
</IfModule>
|
Binary file not shown.
Before Width: | Height: | Size: 4.2 KiB |
|
@ -12,9 +12,6 @@
|
|||
// [ 应用入口文件 ]
|
||||
namespace think;
|
||||
|
||||
header("Access-Control-Allow-Origin:*");
|
||||
header('Access-Control-Allow-Methods:POST');
|
||||
header('Access-Control-Allow-Headers:x-requested-with, content-type');
|
||||
require dirname(__DIR__) . '/vendor/autoload.php';
|
||||
|
||||
// 执行HTTP应用并响应
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
User-agent: *
|
||||
Disallow:
|
|
@ -25,9 +25,9 @@
|
|||
<p class="error"><?php echo(strip_tags($msg));?></p>
|
||||
<p class="detail"></p>
|
||||
<p class="jump">
|
||||
页面自动 <a id="href" href="<?php echo($url);?>">跳转</a> 等待时间: <b id="wait"><?php echo($wait);?></b>
|
||||
页面自动 <a id="href" href="<?php echo(strip_tags($url));?>">跳转</a> 等待时间: <b id="wait"><?php echo(strip_tags($wait));?></b>
|
||||
</p>
|
||||
<p><a href="<?php echo($url);?>" class="layui-btn layui-btn-normal layui-btn-lg" style="width: 150px;">立即返回</a></p>
|
||||
<p><a href="<?php echo(strip_tags($url));?>" class="layui-btn layui-btn-normal layui-btn-lg" style="width: 150px;">立即返回</a></p>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
(function(){
|
||||
|
|
|
@ -33,9 +33,9 @@
|
|||
<?php } ?>
|
||||
<p class="detail"></p>
|
||||
<p class="jump">
|
||||
页面自动 <a id="href" href="<?php echo($url);?>">跳转</a> 等待时间: <b id="wait"><?php echo($wait);?></b>
|
||||
页面自动 <a id="href" href="<?php echo(strip_tags($url));?>">跳转</a> 等待时间: <b id="wait"><?php echo(strip_tags($wait));?></b>
|
||||
</p>
|
||||
<p><a href="<?php echo($url);?>" class="layui-btn layui-btn-normal layui-btn-lg" style="width: 150px;">立即返回</a></p>
|
||||
<p><a href="<?php echo(strip_tags($url));?>" class="layui-btn layui-btn-normal layui-btn-lg" style="width: 150px;">立即返回</a></p>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
(function(){
|
||||
|
|
Loading…
Reference in New Issue