Jump to content

Mod Rewrite dynamic URLS and Static rewrites


DeanWhitehouse

Recommended Posts

How can i rewrite urls like this

to

Also how can i use a URL like

or

 

Is this correct:

RewriteEngine On
RewriteBase /
RewriteRule  ^Login login.php[NC,L]

i have this so far

RewriteEngine On
RewriteBase /
RewriteRule  ^Login login.php [NC,L]
RewriteRule  ^Login/ login.php [NC,L]

RewriteRule  ^About about.php [NC,L]
RewriteRule  ^About/ about.php [NC,L]

RewriteRule  ^Products products.php [NC,L]
RewriteRule  ^Products/ products.php [NC,L]

RewriteRule  ^Services services.php [NC,L]
RewriteRule  ^Services/ services.php [NC,L]

RewriteRule  ^Portfolio portfolio.php [NC,L]
RewriteRule  ^Portfolio/ portfolio.php [NC,L]

RewriteRule  ^Contact contact.php [NC,L]
RewriteRule  ^Contact/ contact.php [NC,L]

RewriteRule  ^Reminder reminder.php [NC,L]
RewriteRule  ^Reminder/ reminder.php [NC,L]

RewriteRule  ^Privacy privacy.php [NC,L]
RewriteRule  ^Privacy/ privacy.php [NC,L]

RewriteRule  ^Terms terms.php [NC,L]
RewriteRule  ^Terms/ terms.php [NC,L]

RewriteRule  ^Terms terms.php [NC,L]
RewriteRule  ^Terms/ terms.php [NC,L]

 

Just need the dynamic one now

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.