Advertisement
tommyosheawebdesign

[HOW TO] Redirect "index.php?route=common/home" to main page

Jun 10th, 2020
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. To redirect the home URL (http://www.yoursite.com/index.php?route=common/home) to your store's main page (http://www.yoursite.com), add the following code to your .htaccess file below the RewriteBase line:
  2. Code: Select all
  3.  
  4. RewriteCond %{QUERY_STRING} ^route=common/home$
  5. RewriteCond %{REQUEST_METHOD} !^POST$
  6. RewriteRule ^index\.php$ http://%{HTTP_HOST}? [R=301,L]
  7.  
  8.  
  9. Note that this won't change the actual links in your store, but once clicked on, they'll redirect to the main page without the "index.php?route=common/home" portion.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement