PDA

View Full Version : Redirect Print-Version URL to Original URL


dirkji
12-14-2019, 01:44 PM
Hi,

I'm trying to create a mod rewrite that 301 redirects print-version URLs to the original thread.

www.domain.com/forum-title/thread-title-print.html

Should redirect to the original thread URL (without -print):

www.domain.com/forum-title/thread-title.html

Can anyone show me how this is done?

Thanks!

Dave
12-14-2019, 02:13 PM
Untested .htaccess rule:

RewriteBase /
RewriteRule ^(.*)\/(.*)-print\.html$ $1/$2.html [R=301,L]