Skip to content

Commit a6bf174

Browse files
committed
Merge branch 'master' into prod
2 parents 6f228ce + 6aa3c10 commit a6bf174

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
//echo "requestedPage is: ".$requestedPage."<br>";
1818

1919
if (strtolower(substr($requestedPage, -5)) == '.html') {
20-
header('Location: ' . $base . (substr($base, -1) == '/' ? '' : '/') . substr($requestedPage, 0, -5), true, 302);
20+
header('Location: ' . $base . (substr($base, -1) == '/' ? '' : '/') . substr($requestedPage, 0, -5), true, 307);
2121
exit;
2222
}
2323
if (strtolower($requestedPage) == 'home' || strtolower($requestedPage) == 'index' || strtolower($requestedPage) == 'index.php') {
24-
header('Location: ' . $base . (substr($base, -1) == '/' ? '' : '/'), true, 302);
24+
header('Location: ' . $base . (substr($base, -1) == '/' ? '' : '/'), true, 307);
2525
exit;
2626
}
2727
if (!$requestedPage) {

resources/home.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ <h3>Nashville,<span>&nbsp;</span>TN</h3>
2727
</div>
2828
<div class="section">
2929
<p>Inspired by conferences like Webstock and Brooklyn Beta, we want to make a friendly conference for us. Together with our friends and peers, we aim to inspire you to make great things with PHP.</p>
30-
<p><a href="http://phpcon.eventbrite.com">Register now for only $350</a>. You'll receive: <ul><li>Two tutorials on the 21st</li><li>A full day of <a href="speakers">excellent speakers</a> on the 22nd</li><li>All your food, snacks, and conversation free</li></ol></p>
30+
<p><a href="http://phpcon.eventbrite.com">Register now for only $300</a>. You'll receive: <ul><li>Two tutorials on the 21st</li><li>A full day of <a href="speakers">excellent speakers</a> on the 22nd</li><li>All your food, snacks, and conversation free</li></ol></p>
3131
</div>
3232

3333
<div class="sectionWide">

0 commit comments

Comments
 (0)