how to rewrite urls .Please HELP

conor

New Member
What you are looking for, assuming that your are using Apache and not a Windows Server, is Mod_rewrite.

With this module you can rewrite URLs. Here's a quick example of a script that renames Home as index.php:

Code:
RewriteEngine on
RewriteRule ^Home/?$ index.php [L,NC]

This code should be placed in a file named .htaccess
 
Top