我有一个wordpress网站,但想在其中一个文件夹中安装另一个微型网站。
www.example.com =主要网站 www.example.com/shop =新网站
然而,在主网站上我已经开启了很多固定链接,我如何为" shop"制作例外。以下无效。
# 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
RewriteCond %{REQUEST_URI} ^/shop
RewriteRule . /shop/index.php [L]
答案 0 :(得分:0)
在对重写和.htaccess进行更多挖掘之后,这段代码最终工作了...... 它简单地说,如果网址是商店停止不再重写
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^shop\.php$ - [L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress