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
https://forums.phpfreaks.com/topic/143610-htaccess-redirect-dynamic-urls/
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.

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.