.HTACCESS - File Extension for Hypertext Access Files

Q

What is HTACCESS? HTACCESS, short name for Hypertext Access, is used as the file extension for Hypertext Access files. .HTACCESS files are text files that are used to store access control settings for HTTP servers. See the sample .HTACCESS file included below.

✍: FYIcenter.com

A

File Extension: .HTACCESS

MIME Type: text/plain

File Content: Hypertext Access

.HTACCESS files are Hypertext Access files, that are used to store access control settings for HTTP servers. Here is a sample .HTACCESS Hypertext Access file:

AllowOverride None

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /yourls-loader.php [L]
</IfModule>

.HTACCESS Hypertext Access file sample: Click sample.htaccess to download.

Since .HTACCESS files are in text format, you can use Notepad or any text editor to create or modify them. No special software is needed.

2012-09-12, 4562👍, 0💬