Collections:
Other Resources:
Setting Up Apache Server to Use .htaccess File on Window Systems
How to use .htaccess file with Apache server on Window systems?
✍: FYIcenter.com
1. Assuming that your Apache server is installed at: C:\Program Files\Apache Software Foundation\Apache2.2
2. Open in "notepad" Apache server configuration file at C:\Program Files\Apache Software Foundation\Apache2.2\conf\httd.conf
3. Find the Directory section and set AllowOverride to "All" to allow .htaccess override configuration settings:
<Directory "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs"> ... AllowOverride All </Directory>
4. Add an new command to change access file name from .htaccess to dot.htaccess. This is important because Windows systems do not like .htaccess as a file name.
AccessFileName dot.htaccess
5. Save httd.conf file and restart the Apache server.
6. Create an access file and save it as: C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\dot.htaccess with:
Redirect /_test_htaccess.html http://windows.fyicenter.com
7. Run Web browser with http://localhost:8080/_test_htaccess.html. Your browser will be redirected to our Web site.
2006-12-09, 18708🔥, 0💬
Popular Posts:
What is YInstStarter Class - Download Program Files (DPF)? YInstStarter Class is a Download Program ...
How to create a command button to run my macro in slide show view? I have created a macro that displ...
What happens if you entered the wrong Passkey on your cell phone? If the Passkey you entered on your...
What is the "IP Helper (iphlpsvc)" system service on Windows Server 2012? Can I disable "IP Helper"?...
Where to find information about what services are running on Windows 7 and how to manage them? I wan...