Topic: simplify urls question
|

|
| Author |
|
mwebb Newbie

Joined: 11 December 2010
Online Status: Offline Posts: 2
|
| Posted: 11 December 2010 at 4:34pm | IP Logged
|
|
|
Hi. Please help to create simplify urls.
I have 2 pages
www.sitename/employer/index.aspx
www.sitename/employer/online.aspx
I need to simplify first in browser url to
www.sitename/employer and second page to
www.sitename/online
Thanks.
|
| Back to Top |
|
| |
Guests Guest

Joined: 01 October 2003
Online Status: Online Posts: -149
|
| Posted: 13 December 2010 at 5:58am | IP Logged
|
|
|
Hello,
please, try using:
Code:
RewriteEngine on
# RewriteBase /
RewriteRule ^employer/index\.aspx$ /employer [NC,R=301,L]
RewriteRule ^employer$ /employer/index.aspx [NC,L]
RewriteRule ^employer/online\.aspx$ /online [NC,R=301,L]
RewriteRule ^online$ /employer/online.aspx [NC,L] |
|
|
Regards
Andrew
|
| Back to Top |
|
| |
mwebb Newbie

Joined: 11 December 2010
Online Status: Offline Posts: 2
|
| Posted: 13 December 2010 at 7:06am | IP Logged
|
|
|
AndrushkaUS wrote:
Hello,
please, try using:
...
|
|
|
Excellent. It works.
Spasibo =)
|
| Back to Top |
|
| |
Guests Guest

Joined: 01 October 2003
Online Status: Online Posts: -149
|
| Posted: 13 December 2010 at 7:17am | IP Logged
|
|
|
welcome =)
|
| Back to Top |
|
| |
|
|
If you wish to post a reply to this topic you must first login
If you are not already registered you must first register
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum
|