first commit
21
public/.htaccess
Normal file
@ -0,0 +1,21 @@
|
||||
<IfModule mod_rewrite.c>
|
||||
<IfModule mod_negotiation.c>
|
||||
Options -MultiViews -Indexes
|
||||
</IfModule>
|
||||
|
||||
RewriteEngine On
|
||||
|
||||
# Handle Authorization Header
|
||||
RewriteCond %{HTTP:Authorization} .
|
||||
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
||||
|
||||
# Redirect Trailing Slashes If Not A Folder...
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_URI} (.+)/$
|
||||
RewriteRule ^ %1 [L,R=301]
|
||||
|
||||
# Send Requests To Front Controller...
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteRule ^ index.php [L]
|
||||
</IfModule>
|
BIN
public/assets/doc/114health-exam-form.pdf
Normal file
BIN
public/assets/images/TYAPP-Download-QRcode.png
Normal file
After Width: | Height: | Size: 7.5 KiB |
BIN
public/assets/images/TYAPP-Reg-Info.jpg
Normal file
After Width: | Height: | Size: 72 KiB |
BIN
public/assets/images/app_aos.png
Normal file
After Width: | Height: | Size: 58 KiB |
BIN
public/assets/images/app_ios.png
Normal file
After Width: | Height: | Size: 51 KiB |
BIN
public/assets/images/health_allowance_comic_01.jpg
Normal file
After Width: | Height: | Size: 394 KiB |
BIN
public/assets/images/health_allowance_intro_01.jpg
Normal file
After Width: | Height: | Size: 356 KiB |
BIN
public/assets/images/health_literacy_comic_01.jpg
Normal file
After Width: | Height: | Size: 403 KiB |
BIN
public/assets/images/health_literacy_intro_01.jpg
Normal file
After Width: | Height: | Size: 315 KiB |
BIN
public/assets/images/improved_health_comic_01.jpg
Normal file
After Width: | Height: | Size: 365 KiB |
BIN
public/assets/images/improved_health_intro_01.jpg
Normal file
After Width: | Height: | Size: 369 KiB |
BIN
public/assets/images/main-banner_960x480.png
Normal file
After Width: | Height: | Size: 153 KiB |
BIN
public/assets/images/metabolism_comic_01.jpg
Normal file
After Width: | Height: | Size: 354 KiB |
BIN
public/assets/images/metabolism_intro_01.jpg
Normal file
After Width: | Height: | Size: 380 KiB |
BIN
public/assets/images/prize/airfryer.png
Normal file
After Width: | Height: | Size: 172 KiB |
BIN
public/assets/images/prize/bike.jpg
Normal file
After Width: | Height: | Size: 41 KiB |
BIN
public/assets/images/prize/car.jpg
Normal file
After Width: | Height: | Size: 124 KiB |
BIN
public/assets/images/prize/emotor.png
Normal file
After Width: | Height: | Size: 454 KiB |
BIN
public/assets/images/prize/giftcard-1000.png
Normal file
After Width: | Height: | Size: 92 KiB |
BIN
public/assets/images/prize/giftcard-2000.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
public/assets/images/prize/giftcard-500.png
Normal file
After Width: | Height: | Size: 83 KiB |
BIN
public/assets/images/prize/iphone.png
Normal file
After Width: | Height: | Size: 153 KiB |
BIN
public/assets/images/prize/td-3261g.jpg
Normal file
After Width: | Height: | Size: 60 KiB |
BIN
public/assets/images/prize/watch.jpg
Normal file
After Width: | Height: | Size: 258 KiB |
BIN
public/assets/images/prize/超商等值商品卡.png
Normal file
After Width: | Height: | Size: 279 KiB |
BIN
public/favicon.ico
Normal file
After Width: | Height: | Size: 58 KiB |
55
public/index.php
Normal file
@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Contracts\Http\Kernel;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
define('LARAVEL_START', microtime(true));
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Check If The Application Is Under Maintenance
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| If the application is in maintenance / demo mode via the "down" command
|
||||
| we will load this file so that any pre-rendered content can be shown
|
||||
| instead of starting the framework, which could cause an exception.
|
||||
|
|
||||
*/
|
||||
|
||||
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
|
||||
require $maintenance;
|
||||
}
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Register The Auto Loader
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Composer provides a convenient, automatically generated class loader for
|
||||
| this application. We just need to utilize it! We'll simply require it
|
||||
| into the script here so we don't need to manually load our classes.
|
||||
|
|
||||
*/
|
||||
|
||||
require __DIR__.'/../vendor/autoload.php';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Run The Application
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Once we have the application, we can handle the incoming request using
|
||||
| the application's HTTP kernel. Then, we will send the response back
|
||||
| to this client's browser, allowing them to enjoy our application.
|
||||
|
|
||||
*/
|
||||
|
||||
$app = require_once __DIR__.'/../bootstrap/app.php';
|
||||
|
||||
$kernel = $app->make(Kernel::class);
|
||||
|
||||
$response = $kernel->handle(
|
||||
$request = Request::capture()
|
||||
)->send();
|
||||
|
||||
$kernel->terminate($request, $response);
|
2
public/robots.txt
Normal file
@ -0,0 +1,2 @@
|
||||
User-agent: *
|
||||
Disallow:
|