I would like to know what kind of sites poeple have as i am debating about what to do with my new site.
1. Do you have a dynamic or static site
2. If dynamic, do you use a mod rewite( to rewrite your dynamic urls )
if you have any opinions about this subject, please post them
Cheers
Darko ” title=”” class=”bbcode_smiley” />
Gees, I’ve been a webmaster since 1997 and you’d think I’d know what you’re talking about.:blush:
ntaus
I don’t even understand the question. Please explain what are dynamic and static sites.
Gees, I’ve been a webmaster since 1997 and you’d think I’d know what you’re talking about.
Hey! I resemble that remark :cheers:
Example dynamic URL: http://www.choicegambling.com/games/slots/new-slots.php?page=2
(notice the arkRed”>? in the URL)
Example dynamic URL that uses mod rewrite to form a static URL:
Original dynamic URL: arkRed”>http://www.site.com/reviews.php?name=nostalgia-casino
Static URL after mod rewrite: arkRed”>http://www.site.com/reviews/nostalgia-casino.html
Mod rewrite code used to convert dynamic URL to static URL (this code is placed in the .htaccess file):
[COLOR=”Blue”]RewriteEngine on
RewriteRule ^reviews/(.*).html reviews.php?name=$1 [nc][/COLOR][/CODE]
Hope that helps. :blush:[CODE]RewriteEngine on
RewriteRule ^reviews/(.*).html reviews.php?name=$1 [nc][/CODE]
Hope that helps. :blush:
so engineer, let me know if ive got this right
You have your homepge and main catagory ( subpages ) as static…… but when you go deeper you use dynamic pages for stuff like slots reviews etc
basically when theres something repetitive to be done, like slots reviews, as ther could be hundreds of them, its better to use dynamic as its so much easier to produce pages from database – and much easier to update them ?
basically when theres something repetitive to be done, like slots reviews, as ther could be hundreds of them, its better to use dynamic as its so much easier to produce pages from database – and much easier to update them ?
Yes, you’ve got it. :thumbsup:
Please login or Register to submit your answer