SlideShare a Scribd company logo
.htaccess
MemonFaysal
1MemonFaysal
Introduction:
• .htaccess is a configuration file for use on web servers
running the Apache Web Server software. When a .htaccess
file is placed in a directory which is in turn 'loaded via the
Apache Web Server', then the .htaccess file is detected and
executed by the Apache Web Server software. These
.htaccess files can be used to alter the configuration of the
Apache Web Server software to enable/disable additional
functionality and features that the Apache Web Server
software has to offer. These facilities include basic redirect
functionality, for instance if a 404 file not found error occurs,
or for more advanced functions such as content password
protection or image hot link prevention.
• .htaccess isn't difficult to use and is really just made up of a
few simple instructions in a text file.
MemonFaysal 2
Will My Host Support It?
• This is probably the hardest question to give a simple answer to.
Many hosts support .htaccess but don't actually publicise it and
many other hosts have the capability but do not allow their users to
have a .htaccess file. As a general rule, if your server runs Unix or
Linux, or any version of the Apache web server it will support
.htaccess, although your host may not allow you to use it.
A good sign of whether your host allows .htaccess files is if they
support password protection of folders. To do this they will need to
offer .htaccess (although in a few cases they will offer password
protection but not let you use .htaccess). The best thing to do if you
are unsure is to either upload your own .htaccess file and see if it
works or e-mail your web host and ask them.
MemonFaysal 3
What Can I Do?
• You may be wondering what .htaccess can do, or you
may have read about some of its uses but don't realize
how many things you can actually do with it.
There is a huge range of things .htaccess can do
including: password protecting folders, redirecting users
automatically, custom error pages, changing your file
extensions, banning users with certain IP addresses,
only allowing users with certain IP addresses, stopping
directory listings and using a different file as the index
file.
MemonFaysal 4
Creating A .htaccess File
• Creating a .htaccess file may cause you a few problems. Writing the
file is easy, you just need enter the appropriate code into a text
editor (like notepad). You may run into problems with saving the file.
Because .htaccess is a strange file name (the file actually has no
name but a 8 letter file extension) it may not be accepted on certain
systems (e.g. Windows 3.1). With most operating systems, though,
all you need to do is to save the file by entering the name as:
".htaccess"
(including the quotes). If this doesn't work, you will need to name it
something else (e.g. htaccess.txt) and then upload it to the server.
Once you have uploaded the file you can then rename it using an
FTP program.
MemonFaysal 5
Warning
• Before beginning using .htaccess, I should give you one
warning. Although using .htaccess on your server is
extremely unlikely to cause you any problems (if
something is wrong it simply won't work), you should be
wary if you are using the Microsoft FrontPage
Extensions. The FrontPage extensions use the .htaccess
file so you should not really edit it to add your own
information. If you do want to (this is not recommended,
but possible) you should download the .htaccess file
from your server first (if it exists) and then add your code
to the beginning.
MemonFaysal 6
Custom Error Pages
• The first use of the .htaccess file which I will cover is
custom error pages. These will allow you to have your
own, personal error pages (for example when a file is not
found) instead of using your host's error pages or having
no page. This will make your site seem much more
professional in the unlikely event of an error. It will also
allow you to create scripts to notify you if there is an
error (for example I use a PHP script on Free
Webmaster Help to automatically e-mail me when a
page is not found).
MemonFaysal 7
Custom Error Pages (Cont…)
• You can use custom error pages for any error as long as you
know its number (like 404 for page not found) by adding the
following to your .htaccess file:
ErrorDocument errornumber /file.html
For example if I had the file notfound.html in the root directory
of my site and I wanted to use it for a 404 error I would use:
ErrorDocument 404 /notfound.html
If the file is not in the root directory of your site, you just need
to put the path to it:
ErrorDocument 500 /errorpages/500.html
MemonFaysal 8
Common Errors
• These are some of the most common errors:
401 - Authorization Required
400 - Bad request
403 - Forbidden
500 - Internal Server Error
404 - Wrong page
Then, all you need to do is to create a file to display
when the error happens and upload it and the .htaccess
file.
MemonFaysal 9
Stop A Directory Index From Being Shown
• Sometimes, for one reason or another, you will have no
index file in your directory. This will, of course, mean that
if someone types the directory name into their browser, a
full listing of all the files in that directory will be shown.
This could be a security risk for your site.
To prevent against this (without creating lots of new
'index' files, you can enter a command into your
.htaccess file to stop the directory list from being shown:
Options -Indexes
MemonFaysal 10
Deny/Allow Certain IP Addresses
• In some situations, you may want to only allow people
with specific IP addresses to access your site (for
example, only allowing people using a particular ISP to
get into a certain directory) or you may want to ban
certain IP addresses (for example, keeping disruptive
members out of your message boards). Of course, this
will only work if you know the IP addresses you want to
ban and, as most people on the internet now have a
dynamic IP address, so this is not always the best way to
limit usage.
MemonFaysal 11
Block an IP address by using:
deny from 000.000.000.000
where 000.000.000.000 is the IP address. If you only specify 1 or 2 of the
groups of numbers, you will block a whole range.
You can allow an IP address by using:
allow from 000.000.000.000
where 000.000.000.000 is the IP address. If you only specify 1 or 2 of the
groups of numbers, you will allow a whole range.
If you want to deny everyone from accessing a directory, you can use:
deny from all
but this will still allow scripts to use the files in the directory.
MemonFaysal 12
Alternative Index Files
• You may not always want to use index.htm or index.html as
your index file for a directory, for example if you are using
PHP files in your site, you may want index.php to be the index
file for a directory. You are not limited to 'index' files though.
Using .htaccess you can set foofoo.blah to be your index file if
you want to!
Alternate index files are entered in a list. The server will work
from left to right, checking to see if each file exists, if none of
them exist it will display a directory listing (unless, of course,
you have turned this off).
DirectoryIndex index.php index.html index.htm
MemonFaysal 13
Redirection
• One of the most useful functions of the .htaccess file is
to redirect requests to different files, either on the same
server, or on a completely different web site. It can be
extremely useful if you change the name of one of your
files but allow users to still find it. Another use (which I
find very useful) is to redirect to a longer URL, for
example in my newsletters I can use a very short URL
for my affiliate links.
MemonFaysal 14
Redirect a specific file:
Redirect /location/from/root/file.ext
http://www.othersite.com/new/file/location.xyz
• In this above example, a file in the root directory called
oldfile.html would be entered as:
/oldfile.html
and a file in the old subdirectory would be entered as:
/old/oldfile.html
MemonFaysal 15
Redirect whole directories
You can also redirect whole directories of your site using
the .htaccess file, for example if you had a directory called
olddirectory on your site and you had set up the same files
on a new site at: http://www.newsite.com/newdirectory/ you
could redirect all the files in that directory without having to
specify each one:
Redirect /olddirectory
http://www.newsite.com/newdirectory
MemonFaysal 16
Redirect whole directories
Then, any request to your site below /olddirectory will be
redirected to the new site, with the
extra information in the URL added on, for example if someone
typed in:
http://www.youroldsite.com/olddirecotry/oldfiles/images/ima
ge.gif
They would be redirected to:
http://www.newsite.com/newdirectory/oldfiles/images/image
.gif
This can prove to be extremely powerful if used correctly.
MemonFaysal 17
Password Protection
• Although there are many uses of the .htaccess file, by far
the most popular, and probably most useful, is being
able to reliably password protect directories on websites.
Although JavaScript etc. can also be used to do this,
only .htaccess has total security (as someone must know
the password to get into the directory, there are no 'back
doors')
MemonFaysal 18
The .htaccess File
• Adding password protection to a directory using .htaccess takes two
stages. The first part is to add the appropriate lines to your .htaccess
file in the directory you would like to protect. Everything below this
directory will be password protected:
AuthName "Section Name"
AuthType Basic
AuthUserFile /full/path/to/.htpasswd
Require valid-user
• There are a few parts of this which you will need to change for your site.
You should replace "Section Name" with the name of the part of the site
you are protecting e.g. "Members Area".
The /full/parth/to/.htpasswd should be changed to reflect the full server
path to the .htpasswd file (more on this later). If you do not know what
the full path to your web space is, contact your system administrator for
details.
MemonFaysal 19
The .htpasswd File
• Password protecting a directory takes a little more work
than any of the other .htaccess functions because you
must also create a file to contain the usernames and
passwords which are allowed to access the site. These
should be placed in a file which (by default) should be
called .htpasswd. Like the .htaccess file, this is a file with
no name and an 8 letter extension. This can be placed
anywhere within you website (as the passwords are
encrypted) but it is advisable to store it outside the web
root so that it is impossible to access it from the web.
MemonFaysal 20
Entering Usernames & Passwords
• Once you have created your .htpasswd file (you can do this in a
standard text editor) you must enter the usernames and passwords
to access the site. They should be entered as follows:
username:password
• where the password is the encrypted format of the password. To
encrypt the password you will either need to use one of the premade
scripts available on the web or write your own. There is a good
username/password service at the KxS site which will allow you to
enter the user name and password and will output it in the correct
format.
• For multiple users, just add extra lines to your .htpasswd file in the
same format as the first. There are even scripts available for free
which will manage the .htpasswd file and will allow automatic
adding/removing of users etc.
MemonFaysal 21
Accessing The Site
• When you try to access a site which has been protected
by .htaccess your browser will pop up a standard
username/password dialog box. If you don't like this,
there are certain scripts available which allow you to
embed a username/password box in a website to do the
authentication. You can also send the username and
password (unencrypted) in the URL as follows:
http://username:password@www.website.com/directory/
MemonFaysal 22
Summary
• .htaccess is one of the most useful files a webmaster
can use. There are a wide variety of different uses for it
which can save time and increase security on your
website.
MemonFaysal 23
Resource:
• http://www.freewebmasterhelp.com/tutorials/htaccess/
MemonFaysal 24

More Related Content

What's hot

slingmodels
slingmodelsslingmodels
slingmodels
Ankur Chauhan
 
How to Convert a Component Design into an MUI React Code
How to Convert a Component Design into an MUI React CodeHow to Convert a Component Design into an MUI React Code
How to Convert a Component Design into an MUI React Code
WrapPixel
 
Class 3 - PHP Functions
Class 3 - PHP FunctionsClass 3 - PHP Functions
Class 3 - PHP Functions
Ahmed Swilam
 
Meetup angular http client
Meetup angular http clientMeetup angular http client
Meetup angular http client
Gaurav Madaan
 
Js: master prototypes
Js: master prototypesJs: master prototypes
Js: master prototypes
Barak Drechsler
 
Control Structures In Php 2
Control Structures In Php 2Control Structures In Php 2
Control Structures In Php 2
Digital Insights - Digital Marketing Agency
 
File Handling In C++(OOPs))
File Handling In C++(OOPs))File Handling In C++(OOPs))
File Handling In C++(OOPs))
Papu Kumar
 
Asp.net caching
Asp.net cachingAsp.net caching
Asp.net caching
Mindfire Solutions
 
Spring notes
Spring notesSpring notes
Spring notes
Rajeev Uppala
 
Javascript
JavascriptJavascript
Javascript
guest03a6e6
 
Collections - Lists, Sets
Collections - Lists, Sets Collections - Lists, Sets
Collections - Lists, Sets
Hitesh-Java
 
Mongo Nosql CRUD Operations
Mongo Nosql CRUD OperationsMongo Nosql CRUD Operations
Mongo Nosql CRUD Operations
anujaggarwal49
 
webworkers
webworkerswebworkers
webworkers
Asanka Indrajith
 
Advanced java lab swing mvc awt
Advanced java lab swing mvc awtAdvanced java lab swing mvc awt
Advanced java lab swing mvc awt
vishal choudhary
 
Javascript by geetanjali
Javascript by geetanjaliJavascript by geetanjali
Javascript by geetanjali
Geetanjali Bhosale
 
DSpace Training Presentation
DSpace Training PresentationDSpace Training Presentation
DSpace Training Presentation
Thomas King
 
ShEx vs SHACL
ShEx vs SHACLShEx vs SHACL
ShEx vs SHACL
Jose Emilio Labra Gayo
 
Understanding Sling Models in AEM
Understanding Sling Models in AEMUnderstanding Sling Models in AEM
Understanding Sling Models in AEM
Accunity Software
 
HTML Fundamentals
HTML FundamentalsHTML Fundamentals
HTML Fundamentals
BG Java EE Course
 
Python and MongoDB
Python and MongoDB Python and MongoDB
Python and MongoDB
Norberto Leite
 

What's hot (20)

slingmodels
slingmodelsslingmodels
slingmodels
 
How to Convert a Component Design into an MUI React Code
How to Convert a Component Design into an MUI React CodeHow to Convert a Component Design into an MUI React Code
How to Convert a Component Design into an MUI React Code
 
Class 3 - PHP Functions
Class 3 - PHP FunctionsClass 3 - PHP Functions
Class 3 - PHP Functions
 
Meetup angular http client
Meetup angular http clientMeetup angular http client
Meetup angular http client
 
Js: master prototypes
Js: master prototypesJs: master prototypes
Js: master prototypes
 
Control Structures In Php 2
Control Structures In Php 2Control Structures In Php 2
Control Structures In Php 2
 
File Handling In C++(OOPs))
File Handling In C++(OOPs))File Handling In C++(OOPs))
File Handling In C++(OOPs))
 
Asp.net caching
Asp.net cachingAsp.net caching
Asp.net caching
 
Spring notes
Spring notesSpring notes
Spring notes
 
Javascript
JavascriptJavascript
Javascript
 
Collections - Lists, Sets
Collections - Lists, Sets Collections - Lists, Sets
Collections - Lists, Sets
 
Mongo Nosql CRUD Operations
Mongo Nosql CRUD OperationsMongo Nosql CRUD Operations
Mongo Nosql CRUD Operations
 
webworkers
webworkerswebworkers
webworkers
 
Advanced java lab swing mvc awt
Advanced java lab swing mvc awtAdvanced java lab swing mvc awt
Advanced java lab swing mvc awt
 
Javascript by geetanjali
Javascript by geetanjaliJavascript by geetanjali
Javascript by geetanjali
 
DSpace Training Presentation
DSpace Training PresentationDSpace Training Presentation
DSpace Training Presentation
 
ShEx vs SHACL
ShEx vs SHACLShEx vs SHACL
ShEx vs SHACL
 
Understanding Sling Models in AEM
Understanding Sling Models in AEMUnderstanding Sling Models in AEM
Understanding Sling Models in AEM
 
HTML Fundamentals
HTML FundamentalsHTML Fundamentals
HTML Fundamentals
 
Python and MongoDB
Python and MongoDB Python and MongoDB
Python and MongoDB
 

Viewers also liked

Apache2 BootCamp : Getting Started With Apache
Apache2 BootCamp : Getting Started With ApacheApache2 BootCamp : Getting Started With Apache
Apache2 BootCamp : Getting Started With Apache
Wildan Maulana
 
PHP Training Session 5
PHP Training Session 5PHP Training Session 5
PHP Training Session 5
Vishal Kothari
 
Php File Upload
Php File UploadPhp File Upload
Php File Upload
Hiroaki Kawai
 
Technical SEO: .htaccess & 301 Redirects
Technical SEO:  .htaccess & 301 RedirectsTechnical SEO:  .htaccess & 301 Redirects
Technical SEO: .htaccess & 301 Redirects
Rob Bertholf
 
Robots and-sitemap - Version 1.0.1
Robots and-sitemap - Version 1.0.1Robots and-sitemap - Version 1.0.1
Robots and-sitemap - Version 1.0.1
Naji El Kotob
 
Introduction to "robots.txt
Introduction to "robots.txtIntroduction to "robots.txt
Introduction to "robots.txt
Ishan Mishra
 
Learn how to use the .htaccess file
Learn how to use the .htaccess fileLearn how to use the .htaccess file
Learn how to use the .htaccess file
Istogram
 
Bootstrap [part 1]
Bootstrap [part 1]Bootstrap [part 1]
Bootstrap [part 1]
Ghanshyam Patel
 
Introduction to Bootstrap
Introduction to BootstrapIntroduction to Bootstrap
Introduction to Bootstrap
Ron Reiter
 
Durability of concrete
Durability of concreteDurability of concrete
Durability of concrete
Rajesh Prasad
 
Php mysql ppt
Php mysql pptPhp mysql ppt
Php Presentation
Php PresentationPhp Presentation
Php Presentation
Manish Bothra
 
Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework...
Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework...Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework...
Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework...
Cedric Spillebeen
 

Viewers also liked (13)

Apache2 BootCamp : Getting Started With Apache
Apache2 BootCamp : Getting Started With ApacheApache2 BootCamp : Getting Started With Apache
Apache2 BootCamp : Getting Started With Apache
 
PHP Training Session 5
PHP Training Session 5PHP Training Session 5
PHP Training Session 5
 
Php File Upload
Php File UploadPhp File Upload
Php File Upload
 
Technical SEO: .htaccess & 301 Redirects
Technical SEO:  .htaccess & 301 RedirectsTechnical SEO:  .htaccess & 301 Redirects
Technical SEO: .htaccess & 301 Redirects
 
Robots and-sitemap - Version 1.0.1
Robots and-sitemap - Version 1.0.1Robots and-sitemap - Version 1.0.1
Robots and-sitemap - Version 1.0.1
 
Introduction to "robots.txt
Introduction to "robots.txtIntroduction to "robots.txt
Introduction to "robots.txt
 
Learn how to use the .htaccess file
Learn how to use the .htaccess fileLearn how to use the .htaccess file
Learn how to use the .htaccess file
 
Bootstrap [part 1]
Bootstrap [part 1]Bootstrap [part 1]
Bootstrap [part 1]
 
Introduction to Bootstrap
Introduction to BootstrapIntroduction to Bootstrap
Introduction to Bootstrap
 
Durability of concrete
Durability of concreteDurability of concrete
Durability of concrete
 
Php mysql ppt
Php mysql pptPhp mysql ppt
Php mysql ppt
 
Php Presentation
Php PresentationPhp Presentation
Php Presentation
 
Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework...
Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework...Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework...
Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework...
 

Similar to .htaccess

test pdf
test pdftest pdf
testing pdf doc
testing pdf doctesting pdf doc
testing pdf doc
thinkingeurope2011
 
test
testtest
sfsa
sfsasfsa
Guide 6 - Tapping Into Your Website Configuration File.pdf
Guide 6 - Tapping Into Your Website Configuration File.pdfGuide 6 - Tapping Into Your Website Configuration File.pdf
Guide 6 - Tapping Into Your Website Configuration File.pdf
persuebusiness
 
Comparative Development Methodologies
Comparative Development MethodologiesComparative Development Methodologies
Comparative Development Methodologies
elliando dias
 
Htaccess file tutorial and tips
Htaccess file tutorial and tipsHtaccess file tutorial and tips
Htaccess file tutorial and tips
Imam Rosidi
 
7 things every web developer should know about linux administration
7 things every web developer should know about linux administration7 things every web developer should know about linux administration
7 things every web developer should know about linux administration
Zareef Ahmed
 
Apache Multiview Vulnerability
Apache Multiview VulnerabilityApache Multiview Vulnerability
Apache Multiview Vulnerability
Ronan Dunne, CEH, SSCP
 
Apache
ApacheApache
Apache
Rathan Raj
 
Site Mocikut
Site MocikutSite Mocikut
Site Mocikut
erick
 
WordPress Theming 101
WordPress Theming 101WordPress Theming 101
WordPress Theming 101
Zero Point Development
 
Scalable talk notes
Scalable talk notesScalable talk notes
Scalable talk notes
Perrin Harkins
 
Php 1
Php 1Php 1
Installing php and my sql locally using xampp
Installing php and my sql locally using xamppInstalling php and my sql locally using xampp
Installing php and my sql locally using xampp
peyman Ghader Kurehpaz
 
Drupal 7x Installation - Introduction to Drupal Concepts
Drupal 7x Installation - Introduction to Drupal ConceptsDrupal 7x Installation - Introduction to Drupal Concepts
Drupal 7x Installation - Introduction to Drupal Concepts
Micky Metts
 
Introduction to web page
Introduction to web pageIntroduction to web page
Introduction to web page
Mahmoud Shaqria
 
Apache ppt
Apache pptApache ppt
Apache ppt
Sanmuga Nathan
 
Apache
ApacheApache
Apache
NIRMAL FELIX
 
Apache
Apache Apache
Apache
Gouthaman V
 

Similar to .htaccess (20)

test pdf
test pdftest pdf
test pdf
 
testing pdf doc
testing pdf doctesting pdf doc
testing pdf doc
 
test
testtest
test
 
sfsa
sfsasfsa
sfsa
 
Guide 6 - Tapping Into Your Website Configuration File.pdf
Guide 6 - Tapping Into Your Website Configuration File.pdfGuide 6 - Tapping Into Your Website Configuration File.pdf
Guide 6 - Tapping Into Your Website Configuration File.pdf
 
Comparative Development Methodologies
Comparative Development MethodologiesComparative Development Methodologies
Comparative Development Methodologies
 
Htaccess file tutorial and tips
Htaccess file tutorial and tipsHtaccess file tutorial and tips
Htaccess file tutorial and tips
 
7 things every web developer should know about linux administration
7 things every web developer should know about linux administration7 things every web developer should know about linux administration
7 things every web developer should know about linux administration
 
Apache Multiview Vulnerability
Apache Multiview VulnerabilityApache Multiview Vulnerability
Apache Multiview Vulnerability
 
Apache
ApacheApache
Apache
 
Site Mocikut
Site MocikutSite Mocikut
Site Mocikut
 
WordPress Theming 101
WordPress Theming 101WordPress Theming 101
WordPress Theming 101
 
Scalable talk notes
Scalable talk notesScalable talk notes
Scalable talk notes
 
Php 1
Php 1Php 1
Php 1
 
Installing php and my sql locally using xampp
Installing php and my sql locally using xamppInstalling php and my sql locally using xampp
Installing php and my sql locally using xampp
 
Drupal 7x Installation - Introduction to Drupal Concepts
Drupal 7x Installation - Introduction to Drupal ConceptsDrupal 7x Installation - Introduction to Drupal Concepts
Drupal 7x Installation - Introduction to Drupal Concepts
 
Introduction to web page
Introduction to web pageIntroduction to web page
Introduction to web page
 
Apache ppt
Apache pptApache ppt
Apache ppt
 
Apache
ApacheApache
Apache
 
Apache
Apache Apache
Apache
 

Recently uploaded

“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
Edge AI and Vision Alliance
 
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their MainframeDigital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Precisely
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Safe Software
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
shyamraj55
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
Zilliz
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
tolgahangng
 
Trusted Execution Environment for Decentralized Process Mining
Trusted Execution Environment for Decentralized Process MiningTrusted Execution Environment for Decentralized Process Mining
Trusted Execution Environment for Decentralized Process Mining
LucaBarbaro3
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
panagenda
 
WeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation TechniquesWeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation Techniques
Postman
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
Zilliz
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
panagenda
 
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
saastr
 
A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024
Intelisync
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
Tatiana Kojar
 
leewayhertz.com-AI in predictive maintenance Use cases technologies benefits ...
leewayhertz.com-AI in predictive maintenance Use cases technologies benefits ...leewayhertz.com-AI in predictive maintenance Use cases technologies benefits ...
leewayhertz.com-AI in predictive maintenance Use cases technologies benefits ...
alexjohnson7307
 
AWS Cloud Cost Optimization Presentation.pptx
AWS Cloud Cost Optimization Presentation.pptxAWS Cloud Cost Optimization Presentation.pptx
AWS Cloud Cost Optimization Presentation.pptx
HarisZaheer8
 
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
Alex Pruden
 
FREE A4 Cyber Security Awareness Posters-Social Engineering part 3
FREE A4 Cyber Security Awareness  Posters-Social Engineering part 3FREE A4 Cyber Security Awareness  Posters-Social Engineering part 3
FREE A4 Cyber Security Awareness Posters-Social Engineering part 3
Data Hops
 
Astute Business Solutions | Oracle Cloud Partner |
Astute Business Solutions | Oracle Cloud Partner |Astute Business Solutions | Oracle Cloud Partner |
Astute Business Solutions | Oracle Cloud Partner |
AstuteBusiness
 
Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024
Jason Packer
 

Recently uploaded (20)

“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
 
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their MainframeDigital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
 
Trusted Execution Environment for Decentralized Process Mining
Trusted Execution Environment for Decentralized Process MiningTrusted Execution Environment for Decentralized Process Mining
Trusted Execution Environment for Decentralized Process Mining
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
 
WeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation TechniquesWeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation Techniques
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
 
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
 
A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
 
leewayhertz.com-AI in predictive maintenance Use cases technologies benefits ...
leewayhertz.com-AI in predictive maintenance Use cases technologies benefits ...leewayhertz.com-AI in predictive maintenance Use cases technologies benefits ...
leewayhertz.com-AI in predictive maintenance Use cases technologies benefits ...
 
AWS Cloud Cost Optimization Presentation.pptx
AWS Cloud Cost Optimization Presentation.pptxAWS Cloud Cost Optimization Presentation.pptx
AWS Cloud Cost Optimization Presentation.pptx
 
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
 
FREE A4 Cyber Security Awareness Posters-Social Engineering part 3
FREE A4 Cyber Security Awareness  Posters-Social Engineering part 3FREE A4 Cyber Security Awareness  Posters-Social Engineering part 3
FREE A4 Cyber Security Awareness Posters-Social Engineering part 3
 
Astute Business Solutions | Oracle Cloud Partner |
Astute Business Solutions | Oracle Cloud Partner |Astute Business Solutions | Oracle Cloud Partner |
Astute Business Solutions | Oracle Cloud Partner |
 
Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024Columbus Data & Analytics Wednesdays - June 2024
Columbus Data & Analytics Wednesdays - June 2024
 

.htaccess

  • 2. Introduction: • .htaccess is a configuration file for use on web servers running the Apache Web Server software. When a .htaccess file is placed in a directory which is in turn 'loaded via the Apache Web Server', then the .htaccess file is detected and executed by the Apache Web Server software. These .htaccess files can be used to alter the configuration of the Apache Web Server software to enable/disable additional functionality and features that the Apache Web Server software has to offer. These facilities include basic redirect functionality, for instance if a 404 file not found error occurs, or for more advanced functions such as content password protection or image hot link prevention. • .htaccess isn't difficult to use and is really just made up of a few simple instructions in a text file. MemonFaysal 2
  • 3. Will My Host Support It? • This is probably the hardest question to give a simple answer to. Many hosts support .htaccess but don't actually publicise it and many other hosts have the capability but do not allow their users to have a .htaccess file. As a general rule, if your server runs Unix or Linux, or any version of the Apache web server it will support .htaccess, although your host may not allow you to use it. A good sign of whether your host allows .htaccess files is if they support password protection of folders. To do this they will need to offer .htaccess (although in a few cases they will offer password protection but not let you use .htaccess). The best thing to do if you are unsure is to either upload your own .htaccess file and see if it works or e-mail your web host and ask them. MemonFaysal 3
  • 4. What Can I Do? • You may be wondering what .htaccess can do, or you may have read about some of its uses but don't realize how many things you can actually do with it. There is a huge range of things .htaccess can do including: password protecting folders, redirecting users automatically, custom error pages, changing your file extensions, banning users with certain IP addresses, only allowing users with certain IP addresses, stopping directory listings and using a different file as the index file. MemonFaysal 4
  • 5. Creating A .htaccess File • Creating a .htaccess file may cause you a few problems. Writing the file is easy, you just need enter the appropriate code into a text editor (like notepad). You may run into problems with saving the file. Because .htaccess is a strange file name (the file actually has no name but a 8 letter file extension) it may not be accepted on certain systems (e.g. Windows 3.1). With most operating systems, though, all you need to do is to save the file by entering the name as: ".htaccess" (including the quotes). If this doesn't work, you will need to name it something else (e.g. htaccess.txt) and then upload it to the server. Once you have uploaded the file you can then rename it using an FTP program. MemonFaysal 5
  • 6. Warning • Before beginning using .htaccess, I should give you one warning. Although using .htaccess on your server is extremely unlikely to cause you any problems (if something is wrong it simply won't work), you should be wary if you are using the Microsoft FrontPage Extensions. The FrontPage extensions use the .htaccess file so you should not really edit it to add your own information. If you do want to (this is not recommended, but possible) you should download the .htaccess file from your server first (if it exists) and then add your code to the beginning. MemonFaysal 6
  • 7. Custom Error Pages • The first use of the .htaccess file which I will cover is custom error pages. These will allow you to have your own, personal error pages (for example when a file is not found) instead of using your host's error pages or having no page. This will make your site seem much more professional in the unlikely event of an error. It will also allow you to create scripts to notify you if there is an error (for example I use a PHP script on Free Webmaster Help to automatically e-mail me when a page is not found). MemonFaysal 7
  • 8. Custom Error Pages (Cont…) • You can use custom error pages for any error as long as you know its number (like 404 for page not found) by adding the following to your .htaccess file: ErrorDocument errornumber /file.html For example if I had the file notfound.html in the root directory of my site and I wanted to use it for a 404 error I would use: ErrorDocument 404 /notfound.html If the file is not in the root directory of your site, you just need to put the path to it: ErrorDocument 500 /errorpages/500.html MemonFaysal 8
  • 9. Common Errors • These are some of the most common errors: 401 - Authorization Required 400 - Bad request 403 - Forbidden 500 - Internal Server Error 404 - Wrong page Then, all you need to do is to create a file to display when the error happens and upload it and the .htaccess file. MemonFaysal 9
  • 10. Stop A Directory Index From Being Shown • Sometimes, for one reason or another, you will have no index file in your directory. This will, of course, mean that if someone types the directory name into their browser, a full listing of all the files in that directory will be shown. This could be a security risk for your site. To prevent against this (without creating lots of new 'index' files, you can enter a command into your .htaccess file to stop the directory list from being shown: Options -Indexes MemonFaysal 10
  • 11. Deny/Allow Certain IP Addresses • In some situations, you may want to only allow people with specific IP addresses to access your site (for example, only allowing people using a particular ISP to get into a certain directory) or you may want to ban certain IP addresses (for example, keeping disruptive members out of your message boards). Of course, this will only work if you know the IP addresses you want to ban and, as most people on the internet now have a dynamic IP address, so this is not always the best way to limit usage. MemonFaysal 11
  • 12. Block an IP address by using: deny from 000.000.000.000 where 000.000.000.000 is the IP address. If you only specify 1 or 2 of the groups of numbers, you will block a whole range. You can allow an IP address by using: allow from 000.000.000.000 where 000.000.000.000 is the IP address. If you only specify 1 or 2 of the groups of numbers, you will allow a whole range. If you want to deny everyone from accessing a directory, you can use: deny from all but this will still allow scripts to use the files in the directory. MemonFaysal 12
  • 13. Alternative Index Files • You may not always want to use index.htm or index.html as your index file for a directory, for example if you are using PHP files in your site, you may want index.php to be the index file for a directory. You are not limited to 'index' files though. Using .htaccess you can set foofoo.blah to be your index file if you want to! Alternate index files are entered in a list. The server will work from left to right, checking to see if each file exists, if none of them exist it will display a directory listing (unless, of course, you have turned this off). DirectoryIndex index.php index.html index.htm MemonFaysal 13
  • 14. Redirection • One of the most useful functions of the .htaccess file is to redirect requests to different files, either on the same server, or on a completely different web site. It can be extremely useful if you change the name of one of your files but allow users to still find it. Another use (which I find very useful) is to redirect to a longer URL, for example in my newsletters I can use a very short URL for my affiliate links. MemonFaysal 14
  • 15. Redirect a specific file: Redirect /location/from/root/file.ext http://www.othersite.com/new/file/location.xyz • In this above example, a file in the root directory called oldfile.html would be entered as: /oldfile.html and a file in the old subdirectory would be entered as: /old/oldfile.html MemonFaysal 15
  • 16. Redirect whole directories You can also redirect whole directories of your site using the .htaccess file, for example if you had a directory called olddirectory on your site and you had set up the same files on a new site at: http://www.newsite.com/newdirectory/ you could redirect all the files in that directory without having to specify each one: Redirect /olddirectory http://www.newsite.com/newdirectory MemonFaysal 16
  • 17. Redirect whole directories Then, any request to your site below /olddirectory will be redirected to the new site, with the extra information in the URL added on, for example if someone typed in: http://www.youroldsite.com/olddirecotry/oldfiles/images/ima ge.gif They would be redirected to: http://www.newsite.com/newdirectory/oldfiles/images/image .gif This can prove to be extremely powerful if used correctly. MemonFaysal 17
  • 18. Password Protection • Although there are many uses of the .htaccess file, by far the most popular, and probably most useful, is being able to reliably password protect directories on websites. Although JavaScript etc. can also be used to do this, only .htaccess has total security (as someone must know the password to get into the directory, there are no 'back doors') MemonFaysal 18
  • 19. The .htaccess File • Adding password protection to a directory using .htaccess takes two stages. The first part is to add the appropriate lines to your .htaccess file in the directory you would like to protect. Everything below this directory will be password protected: AuthName "Section Name" AuthType Basic AuthUserFile /full/path/to/.htpasswd Require valid-user • There are a few parts of this which you will need to change for your site. You should replace "Section Name" with the name of the part of the site you are protecting e.g. "Members Area". The /full/parth/to/.htpasswd should be changed to reflect the full server path to the .htpasswd file (more on this later). If you do not know what the full path to your web space is, contact your system administrator for details. MemonFaysal 19
  • 20. The .htpasswd File • Password protecting a directory takes a little more work than any of the other .htaccess functions because you must also create a file to contain the usernames and passwords which are allowed to access the site. These should be placed in a file which (by default) should be called .htpasswd. Like the .htaccess file, this is a file with no name and an 8 letter extension. This can be placed anywhere within you website (as the passwords are encrypted) but it is advisable to store it outside the web root so that it is impossible to access it from the web. MemonFaysal 20
  • 21. Entering Usernames & Passwords • Once you have created your .htpasswd file (you can do this in a standard text editor) you must enter the usernames and passwords to access the site. They should be entered as follows: username:password • where the password is the encrypted format of the password. To encrypt the password you will either need to use one of the premade scripts available on the web or write your own. There is a good username/password service at the KxS site which will allow you to enter the user name and password and will output it in the correct format. • For multiple users, just add extra lines to your .htpasswd file in the same format as the first. There are even scripts available for free which will manage the .htpasswd file and will allow automatic adding/removing of users etc. MemonFaysal 21
  • 22. Accessing The Site • When you try to access a site which has been protected by .htaccess your browser will pop up a standard username/password dialog box. If you don't like this, there are certain scripts available which allow you to embed a username/password box in a website to do the authentication. You can also send the username and password (unencrypted) in the URL as follows: http://username:password@www.website.com/directory/ MemonFaysal 22
  • 23. Summary • .htaccess is one of the most useful files a webmaster can use. There are a wide variety of different uses for it which can save time and increase security on your website. MemonFaysal 23