Jump to content

htaccess redirect dynamic urls


dbx

Recommended Posts

Hi,

 

I used to use JSP on my site, but have now moved to php and need to do some redirects.

 

I need to do the following:

 

view_project.jsp?project=01 to redirect to view_project.php5?project=01

view_project.jsp?project=02 to redirect to view_project.php5?project=02

...

view_project.jsp?project=100 to redirect to view_project.php5?project=100

 

everything i have tried so far doesn't work.

 

E.g.

 

RewriteCond %{QUERY_STRING} ^project=1$
RewriteRule ^(/)?$ http://www.domain.com/view_project.php5 [R=301,L]

 

Any help would be appreciated!

Link to comment
Share on other sites

  • 2 weeks later...

If it's on your main domain I think this will work

 

RewriteBase /
RewriteRule ^view_project.jsp?project=(.*)$ view_project.php5?project=$1 [R=301,L]

 

If it's not in your main domain, you'll have to add your domain in there somewhere.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.