htaccess tow 子文件夹代码点火器


htaccess tow subfolder codeigniter

我有链接:

http://domain.com/app/codeigniter

在文件.htaccess中 文件夹代码点火器 我有

RewriteEngine on RewriteCond $1 !^(index'.php|resources|robots'.txt) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L,QSA]

域名代码是WordPress,我有代码文件.htaccess

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

但是当我访问时 http://domain.com/app/codeigniter 收到wordpress的错误消息"找不到页面"

对于动态子域代码点火器。

请访问此堆栈流链接,发现它非常有用

如何使用 .htaccess 在代码点火器中实现动态子域?