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! Link to comment https://forums.phpfreaks.com/topic/143610-htaccess-redirect-dynamic-urls/ 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. Link to comment https://forums.phpfreaks.com/topic/143610-htaccess-redirect-dynamic-urls/#findComment-763158 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.