我在根目录public_html.i中安装了codeigniter,并在子文件夹中安装了wordpress。我需要重定向所有网址除管理员/任何东西以重定向到子文件夹中的wordpress。 我的文件夹结构如下。
应用
视图
控制器
如何使用htaccess文件执行此操作?
这是我的htaccess文件:
RewriteEngine on
RewriteBase /
RewriteCond %{HTTPS} !=on
RewriteRule ^.*$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Hide the application and system directories by redirecting the request to index.php
RewriteRule ^(application|system|\.svn) index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [QSA,L]