This guide will walk you through a complete implementaion of URLS. You will be making a very basic blog. Since this the goal of the tutorial is to demonstrate how URLS works, some features (such as a database) will not be included. Nevertheless, you should still get a good understanding of the framework.
- You should be familiar with the PHP.
- Some knowledge of HTML, CSS, and JavaScript.
- Some knowledge of Bootstrap.
- Some knowledge of how the
.htaccess
file works.
- Project Setup
- Getting Started with URLS
- Templates
- Static Files
- More Pages
- Nesting Pages (part 1)
- Nesting Pages (part 2)
- Nesting Pages (part 3)
- Variable Paths
- HTTP Errors (part 1)
- HTTP Errors (part 2)
- HTTP Errors (part 3)
- Case Sensitivity
- Redirects
- Passing Variables
- Deploying
- Conclusion
└── (base directory)/
├── errors/
│ ├── 404.php
│ ├── 500.php
│ └── contributors_500.php
├── includes/
│ ├── footer.inc.php
│ └── header.inc.php
├── static/
│ └── style.css
├── templates/
│ ├── about.php
│ ├── Another-Friend.php
│ ├── authors.php
│ ├── contributors.php
│ ├── errors.php
│ ├── home.php
│ ├── Me.php
│ ├── My-Friend.php
│ ├── posts.php
│ └── vars.php
├── urls/
│ ├── LICENSE
│ ├── update.php
│ └── Urls.php
├── .htaccess
├── author_settings.php
└── settings.php
![]() |
![]() |
---|---|
![]() |
![]() |
![]() |
![]() |