我已经安装了 Codeigniter 并为我的主站点工作。
但我现在正尝试将附加域添加到同一个主机帐户,这样我就可以在同一个主机上运行两个站点。附加域在主 public_html 文件夹中创建一个新文件夹来存储 Web 文件。
如何让 Codeigniter 忽略此目录?当我尝试查看该站点时,该站点无法正确加载。
我在主站点上也有一个 SSL 和 www URLS 的重定向。这是我的 .htaccess 文件:
RewriteEngine on
Options +FollowSymLinks
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.mysite\.co.uk$ [NC]
RewriteRule ^(.*)$ http://mysite.co.uk/$1 [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} (site|sections|here)
RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
RewriteCond %{HTTPS} onsite|sections|here)
RewriteRule ^(.*)$ http://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]