0

我在子文件夹中安装了 Prestashop 1.5.x,而不是在根目录中。我希望它可以从根目录访问,所以我编辑了 .htaccess 文件来设置 RewriteCond 和 RewriteRule 来更改主域和子文件夹。它可以工作,立即从主域重定向到商店。

# Copy and paste the following code into the .htaccess file
# in the public_html folder of your hosting account
# make the changes to the file according to the instructions.

# Do not change this line - RewriteEngine on
RewriteEngine on

# Change yourdomain.com to be your main domain.
RewriteCond %{HTTP_HOST} ^(www.)?mysite.com$

# Change 'subfolder' to be the folder you will use for your main domain.
RewriteCond %{REQUEST_URI} !^/prestashop/

# Don't change this line.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# Change 'subfolder' to be the folder you will use for your main domain.
RewriteRule ^(.*)$ /prestashop/$1

# Change yourdomain.com to be your main domain again.
# Change 'subfolder' to be the folder you will use for your main domain
# followed by / then the main file for your site, index.php, index.html, etc.
RewriteCond %{HTTP_HOST} ^(www.)?mysite.com$
RewriteRule ^(/)?$ prestashop/index.php [L]

我的问题:这是正确的方法,还是更好地使用 index.html 和 javascript 重定向,如下所示:

<head>
<script type="text/javascript"><!--
location.replace("http://maindomain.com/shop/index.php")
//-->
</script>
  <title></title>
</head>

我担心的是如何使 Prestashop 页面对SEO 友好,因此安装在子文件夹中时可以搜索存储。或者更好地将商店从子文件夹移动到根目录?

4

1 回答 1

1

重写是不同形式的重定向

.htaccess方式比 javascript 重定向更好。您为客户节省了一个无用的请求。

于 2013-05-14T13:06:35.000 回答