Thread: Opinions Please
View Single Post
  #5  
Old 12-12-2012, 06:19 PM
Tequila's Avatar
Tequila Tequila is offline
The Grim One
 
Join Date: Jan 2009
Location: Souther Tier, New York State
Posts: 1,356
Gender: Female
Credits: 97,662
Tequila is on a distinguished road
Default

Quote:
Originally Posted by powerchaos View Post
the site looks nice
it is easy to navigate

the only part that is missing are seo links , but that is work for later

here you have a code you can use for the links in case you switch to seo links
put it in htacces , and be sure that mod_rewrite is enabled

Code:
RewriteEngine On
Options +FollowSymLinks #is not always needed , if it provide erros then disable it
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^about/([a-zA-Z0-9_-]+)$ about.php?$1
to use , just type in www.yoursite/about/storm

then the storm page will open

for the other pages use the same way

on that way you can keep the page in a single page and let the users think it are differend pages (also better for google )

Greetings From PowerChaos
I'd have to see how it would work with this style of coding:
PHP Code:
<?php if(!isset($_POST['submit'])) { ?>
<h1>lightningmermaid.me Policies</h1>
<p>Thank you for visiting <b>http://www.lightningmermaid.me</b>.</p>
<p align="center">Please choose the policy you wish to read about.<br />
<a href="?fairuse"><img src="images/fairuse.png" alt="Fair Use Policy" /></a> <a href="?privacy"><img src="images/privacy.png" alt="Privacy Policy" /></a> <a href="?stock"><img src="images/stockpolicy.png" alt="Stock Photography Restrictions" /></a> <a href="?booking"><img src="images/bookingpolicy.png" alt="Booking Policy" /></a>
<? } if($_SERVER['QUERY_STRING'] == "fairuse") { ?>
The file ends with this string as well:
PHP Code:
<?php } include('footer.php'); ?>
__________________
Artist. Designer. Gamer. Mother.
[portfolio] [tarot] [Rune Hollow] [freebies]
Reply With Quote