RewriteEngine On
RewriteRule comic([0-9]+).htm /index.php?area=comic&id=$1 [QSA,L]
RewriteRule pages/ / [R]
RewriteRule includes/ / [R]
RewriteRule config.php / [R]
RewriteRule header.php / [R]
RewriteRule footer.php / [R]
RewriteCond %{REQUEST_FILENAME} !.png
RewriteRule images/ / [R]
RewriteCond %{REQUEST_FILENAME} .png
RewriteRule images/comics/(.+).png /comic.php?id=$1 [L]
RewriteCond %{REQUEST_FILENAME} .htm
RewriteRule season(.+).htm /index.php?area=season&season=$1 [QSA,L]
RewriteCond %{REQUEST_FILENAME} .htm
RewriteRule (.+).htm /index.php?area=$1 [QSA,L]
href='/'>index : pillowcase
blob: a26f6b97fde628bfaa1f22678387e0f8f93075f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
if (isset($title))
{
$rtitle = 'Pillowcase - ' . $title;
} else {
$rtitle = 'Pillowcase';
}
?><HTML>
<HEAD>
<TITLE><?php echo($rtitle); ?></TITLE>
<LINK REL="stylesheet" HREF="/style.css">
<LINK REL="alternate" TYPE="application/rss+xml" HREF="/rss.php">
</HEAD>
<BODY>
<DIV ID="wrap">
<DIV ID="header">
<A HREF="/"><H1>Pillowcase</H1></A>
</DIV>
|