我正在使用 MSM 插件在两个不同的域名上运行两个 ExpressionEngine 站点。站点一具有所有系统文件等,站点二位于站点一的子文件夹中。我的问题是如何让站点二在 url 中没有它的 index.php 文件并且仍然可以工作?
目前我在站点一的 htaccess 文件夹中有这个,站点一运行良好,站点二没有:
<IfModule mod_rewrite.c>
RewriteEngine On
# Removes index.php
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
DirectoryIndex index.html index.php
# Redirect non-www urls to www
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
# If 404s, "No Input File" or every URL returns the same thing
# make it /index.php?/$1 above (add the question mark)