vote up 0 vote down star

I am currently working on a site which resembles a forum in its essential structure. I have decided not to opt for using one of the established PHP frameworks (I have played with Rails before), partially to learn, and also partially because I believe they hinder development in the long term.

I wanted to know how important URL rewriting becomes when building an app. Are dynamic URL's really out of fashion. If implementing URL rewritting should one also then just as well implement controllers? Would it be difficult to switch to a URL rewritting system later on?

Right now I only have a separation between Models and Views, and it's working fine for my purposes. Trying to keep things simple and add as I go.

What are your thoughts?

flag
5  
Why do you believe frameworks hinder development? Given that virtually every large web application is either built on top of an existing framework, or eventually develops its own internal framework, I would say that frameworks are necessary for development. – Nick Lewis Aug 10 at 23:17
2  
You are deluded if you think you are smarter than the legions of programmers who created and use frameworks on a daily basis. Use a framework! Once you get the hang of it, you will never go back. – Byron Whitlock Aug 10 at 23:30
thanks for all your answers guys. I am not deluded to think that I can program a better framework by any means - I just want to learn what goes into a framework, and I figured this would be best accomplished by writing my own for the first time - and who knows, maybe i'll think of some new ways of doing things along the way. – unknown (google) Aug 20 at 3:13
Also, it would be crazy to say that frameworks hinder development - they are just sound program architecture! What I was saying is that using one of the pre-established architectures can cause problems when you end up having to either modify it yourself later down the road, or scrap t all together and do what Nick mentioned: develop your own internal framework. Still, the main reason I am trying to build my own framework is its educational value. – unknown (google) Aug 20 at 3:15

3 Answers

vote up 0 vote down

Remember that URLs are an important part of the user interface of your web application for many users. So URL rewriting is an important tool for increasing the usability of your site.

link|flag
vote up 1 vote down

I would suggest being mindful of rewriting, but don't specifically implement it as you develop. So long as you make sure not to create arcane urls, it should be relatively easy to add later using mod_rewrite.

In particular, I would recommend building links using a function rather than string concatenation. Then when you implement pretty URLs, you can easily modify the function to return the rewritten values, not the actual paths.

link|flag
vote up 1 vote down

URL rewriting is nice because it looks prettier, and makes it a tad easier for the user to see what the content he's about to read is about (although that's probably in a header anyway). Some argue that rewriting is better for SEO reasons.

Still, rewriting is NOT pivotal for a large app. I'd say not having dead links and making it easy to find content is pivotal, not how pretty the URLs are.

If anything its just a "nice to have" that is fairly trivial to implement - that's why everyone is doing it these days.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.