dbx Posted February 3, 2009 Share Posted February 3, 2009 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! Quote Link to comment Share on other sites More sharing options...
siwelis Posted February 16, 2009 Share Posted February 16, 2009 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.