Posted - 10/15/2023 : 04:00:48
In Email Message Admin-orderstatusemail in subfolder store, I have set {%reviewlinks%}, however, my client received an order status email without review links
My main English store used static URL and subfolder store used SEO friendly URL I guess that the issue maybe relate to the setting of .htaccess
1. Main Englsih store htaccess setting:
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST> order deny,allow deny from all allow from all </Limit> <Limit PUT DELETE> order deny,allow deny from all </Limit>
<files .htaccess> order allow,deny deny from all </files> Options -Indexes
AddDefaultCharset UTF-8 AddCharset UTF-8 .htm .html .php .css .js .woff Options +FollowSymLinks
RewriteEngine on RewriteBase / ErrorDocument 404 /404.php RewriteCond %{HTTP_HOST} ^www\.(.*)$ [OR,NC] RewriteCond %{HTTPS} !on RewriteRule ^(.*)$ https://%1%{REQUEST_URI} [R=301,L]
2. Subfolder Chinese store htaccess setting:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / ErrorDocument 404 /taiwan/404-taiwan.php RewriteCond %{HTTP_HOST} ^(www\.3dlens\.com)?$ RewriteRule ^(.*)$ https://3dlens.com/taiwan/$1 [R=301,L]
RewriteRule ^category/([^/.]*)/?$ /taiwan/categories.php?cat=$1 [QSA,nc,L,B] RewriteRule ^products/([^/.]*)/?$ /taiwan/products.php?cat=$1 [QSA,nc,L,B] RewriteRule ^manufacturer/?$ /taiwan/categories.php?man=all [QSA,nc,L,B] RewriteRule ^manufacturer/([^/.]*)/?$ /taiwan/products.php?man=$1 [QSA,nc,L,B] RewriteRule ^([^/.]+)$ taiwan/proddetail.php?prod=$1 [QSA,nc,L,B] </IfModule>
Thanks Jim
Edited by - jimhuang on 10/16/2023 02:37:56
|