Go Back   CodingForums.com > :: Server side development > Apache configuration

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 12-30-2008, 11:10 AM   PM User | #1
PASHA_SANYAL
New Coder

 
Join Date: Feb 2006
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
PASHA_SANYAL is an unknown quantity at this point
Exclamation .htaccess - Mod Rewrite Problem

Hi Everyone,

I am having a problem with mod_rewrite in my website. Please help me out on this.

The objective of the script is to have a custom URL from a dynamic URL:
Dynamic URL:
http://www.abc.com/subfolder/product...&catparentname=
Custom URL:
http://www.abc.com/subfolder/order/order%20zelli%20exotic%20shoes.htm

I am implementing the following code with htaccess:

Quote:
Options +FollowSymLinks
RewriteEngine on
Rewritecond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule order/order%20zelli%20exotic%20shoes.htm$ product-list.php?list=2&catname=Shoes&catparentname=
But the page is not loading. Where am I going wrong?

Any help on this matter will be highly appreciated.

Thanks in advance,

Pasha Sanyal
__________________
Always blame on me..
PASHA_SANYAL is offline   Reply With Quote
Old 12-30-2008, 07:56 PM   PM User | #2
schleppel
Regular Coder

 
Join Date: Oct 2004
Posts: 330
Thanks: 0
Thanked 13 Times in 13 Posts
schleppel is an unknown quantity at this point
Are you getting a 404 error when you visit /subfolder/order/order%20zelli%20exotic%20shoes.htm?
Is the mod_rewrite in /subfolder/.htaccess?

Try
Code:
Options +FollowSymLinks

RewriteEngine On

RewriteRule ^order/order\ zelli\ exotic\ shoes\.htm$ ./product-list.php?list=2&catname=Shoes&catparentname= [QSA,L]
schleppel is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 08:48 AM.


Advertisement
Log in to turn off these ads.