Collections:
Other Resources:
Transforming (Rewrite) URL with Apache Rewrite Rules
How to tell Apache server to transform (rewrite) URL?
✍: FYIcenter.com
1. Follow our Setting Up .htaccess tutorial to define .htaccess files on your Windows system.
2. Open in "notepad" Apache server configuration file at C:\Program Files\Apache Software Foundation\Apache2.2\conf\httd.conf
3. Find the rewrite_module line and un-comment it:
LoadModule rewrite_module modules/mod_rewrite.so
4. Add the following section to turn on rewrite logging. Very useful for debugging!
<IfModule rewrite_module>
RewriteLog "C:/temp/rewrite.log"
RewriteLogLevel 3
</IfModule>
5. Save httd.conf and restart Apache server.
6. Open C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\dot.htaccess. Add:
RewriteEngine on RewriteRule ^(.*)\.htm$ $1.html
6. Run a Web browser and enter http://localhost:8080/index.htm. You will see that the Apache server rewrites index.htm to index.html.
2006-12-09, ≈16🔥, 0💬
Popular Posts:
Signing in on my computer that doesn't run 8 works just fine. So must be windows eight that is causi...
Can I disable Windows service "PCAngel.exe - PC Angel" to speedup my computer? Windows service "PCAn...
What is "Windows Connect Now - Config Registrar" in my Windows 7 service list? And how is "Windows C...
What are Exploit-ObscuredHtml Trojan Web Pages? If you have McAfee VirusScan installed, sometimes yo...
How to download Windows 7 Service Pack 1 (SP1)? Windows 7 Service Pack 1 (SP1) is an update for all ...