ceskyDJ

Redirect URL from Cubecart to Opencart format

Jan 4th, 2019
385
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # mod_rewrite is required
  2. <IfModule mod_rewrite.c>
  3.   # Start rewrite engine and set the root path
  4.   RewriteEngine on
  5.   RewriteBase /
  6.  
  7.   # Redirect to new url format (.../%product-name%/prod-%id%.html --> ../%product-name%)
  8.   RewriteCond %{REQUEST_URI} ^/(.+)/prod-(.+)\.html$
  9.   RewriteRule (.+)/prod-(.+)\.html$ /$1 [R=301] # Redirect with setting HTTP code 301 (moved permanently)
  10. </IfModule>
Advertisement