Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP Enhancing a Simple PHP Application Cleaning URLs with Rewrite Rules Get Variables and Rewrite Rules

Rohit Kuruvilla
Rohit Kuruvilla
317 Points

Are .htaccess files a good practice?

.htaccess files are specific to the Apache webserver. What if I'm writing a PHP application that users should be able to deploy on any setup of their choice? (For ex. nginx, or PHP's built-in server. ) Is there a way to design my application to be compatible with most popular webservers out there?

1 Answer

Typically, .htaccess files are used to create URLs patterns for your application. You can use the .htaccess file to secure certain directories and files as well, but mostly I've seen them use to establish a particular look for your URLs. That being said, .htaccess is not an essential tool for your application and should be optional. You can always implement pretty URLs via your application design as well.