I wrote a post mid last year about protecting your site images from being hotlinked as I found a site that had word for word scrapped one of my blog posts, you can see the post here, and I really wanted to go back to this and run over a few more things the .htaccess file is useful for. I mainly use the .htaccess file to rewrite URIs for example http://mysite.com/site/pages/contact.php would be accessed by visiting http://mysite.com/contact. So the URI is being re-routed to my contact.php page.
Using Mod_rewrite for friendly URLs
You need to make sure if you want to rewrite URI’s that you have the mod_rewrite PHP module installed with your host. Most hosts will have this with the latest stable versions of PHP.
Redirect a domain
If you’ve just moved your site to a new domain and you want to transfer any visitors that visit your old site straight through to your new site just add this to your .htaccess file on your old domain.
Restrict certain file type execution
If you have a server that only has php files on, you can lock it down so other file types can’t be executed
Set custom error pages
Probably the most common use for the .htaccess file is to setup custom error pages. this means that if you’re site throws a 404 not found error the user will see the page at http://yoursite.com/404.php
Remove the www in your url
This snippet of rewrite code will remove the www from your site domain url. For example wordpress automatically does this if you visit http://www.papermashup.com you’ll see that the url changes to http://papermashup.com.
Things to note when editing the .htaccess file
- It’s important to make sure that you don’t have any spelling mistakes or typos in your .htaccess file. It’s very unforgiving and can take your complete site offline throwing a 500 internal server error in some instances. Remember it’s also case sensitive!
- If you’re going to add comments to your .htaccess file simply put a # in front of the text you want to comment out. This is different from say JavaScript or PHP where you can just add a double forward slash //.
- Always make a backup of your .htaccess file before making any changes, this way you can easily isolate any problems if your site does down or you experience unexpected results, and always make sure that if you change the .htaccess file you immediately check your site for any problems.
No comments:
Post a Comment