2013-08-24 54 views
-1

我的网站看起来像这样website.com/home/shoes/myproduct我有很多产品,所以最终的网址变化。我使用我的主页作为商店页面,所以在wordpress中我的产品永久链接库必须在家。所以/ home /实际上是我的主页如何删除网址中的店铺

我该如何删除主页部分 我该如何编辑我的.htaccess文件?

当前的htaccess

# BEGIN WordPress 
<IfModule mod_rewrite.c> 
RewriteEngine On 
RewriteBase/
RewriteRule ^index\.php$ - [L] 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule . /index.php [L] 
</IfModule> 
# END WordPress 

回答

0

创建一个.htaccess文件并把它放在你的文件夹下面几行:

RewriteEngine on 
RewriteRule (.*)$ /$1 [R=301,L] 
+0

等待shizzz。我提供了错误的信息。检查一遍我说过的话,我改变了它。对不起:( – user1616846

+0

确定它现在编辑 –

+0

主页现在甚至不工作:S – user1616846