Paste
1.0.0
<!--
@template: master
@partial: project
@title: The Page Title
@visible: TRUE // visible in menu
@label: Menu Label (optional)
-->
가장 빠른 방법은 데모 사이트를 복제하고 입맛에 맞게 수정하는 것입니다! 종속성을 설치하려면 composer update
실행해야 합니다.
데모 사이트: https://github.com/paste/paste-demo
작곡가를 사용하십시오. 프로젝트의 composer.json
에 paste/paste
추가합니다.
{
"require" : {
"paste/paste" : " dev-master "
}
}
전면 라우터용 index.php
파일을 생성합니다: (또는 데모 사이트에서 복사)
<?php
// composer autoload
require ' vendor/autoload.php ' ;
use Paste Paste ;
// configuration
$ config = array (
// optionally specify a 'base_url' if serving Paste from a subdirectory, i.e. RewriteBase
// 'base_url' => '/paste-demo',
// relative path to content directory
// 'content_dir' => 'content',
// relative path to template directory
// 'template_dir' => 'templates',
// relative path to cache directory
// 'cache_dir' => 'cache',
);
// load config and parse content directory
$ paste = new Paste ( $ config );
// (optional) user defined routing
// 'route regex' => any valid callback
// matched tokens from the regex will be passed as parameters, with $paste instance first
$ paste -> add_route ( ' blog/([0-9]{4})/([0-9]{2})/([0-9]{2})/([A-Za-z0-9-_]+) ' , function ( $ paste , $ year , $ month , $ day , $ name ) {
// ignore date and run normal content request
return $ paste -> render_url ( " blog/ $ name " );
});
// init routing and run
$ paste -> run ();
웹 루트에 content
, templates
, cache
디렉터리를 만듭니다. cache
폴더는 Apache에서 쓰기 가능해야 합니다. 웹 루트는 다음과 같이 나타나야 합니다.
/cache/
/content/
index.html
/templates/
template.stache
/vendor/
index.php
composer.json
.htaccess
루트 콘텐츠 인덱스 파일 content/index.html
을 추가합니다.
<!-- @title: Hello World -->
<!-- @template: template -->
< h3 > Hello, world! </ h3 >
첫 번째 템플릿을 추가합니다(예: templates/template.stache
.
<!doctype html >
< html >
< head >
< meta charset =" utf-8 " >
< title > {{title}} </ title >
</ head >
< body >
{{{content}}}
</ body >
</ html >
URL 재작성을 활성화하려면 .htaccess
파일을 생성하세요. (또는 데모 사이트에서 복사하세요.)
# don't list directories
Options -Indexes
# Turn on URL rewriting
RewriteEngine On
# Installation directory -- same as your 'base_url'
RewriteBase /
# Protect dot files from being viewed
< Files .*>
Order Deny , Allow
Deny From All
</ Files >
# Protect application and system files from being viewed
RewriteRule ^(?:vendor|content|templates|cache)b.* index.php/$0 [L]
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to index.php/URL
RewriteRule .* index.php/$0 [PT]
# use utf-8 encoding for anything served text/plain or text/html
AddDefaultCharset utf-8
# force utf-8 for a number of file formats
AddCharset utf-8 .html .css .js .xml .json .rss
이제 웹 브라우저에서 Paste 사이트를 방문하여 마법을 경험해보세요!