过去几天我面临着截然不同的问题。我的网站正在工作一段时间,而不是在阿联酋工作一段时间。但它在印度完美地运作。在这里,我已经指定了虚拟主机设置和.htaccess。
<VirtualHost ip:80>
ServerAdmin webmaster@basetestserver.com
DocumentRoot /path/
ServerName www.oneearthproperties.com
</VirtualHost>
<VirtualHost ip:80>
ServerAdmin webmaster@basetestserver.com
DocumentRoot /path/
ServerName oneearthproperties.com
</VirtualHost>
我的.htaccess文件
RewriteEngine On
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
之前有没有人遇到过这种困难?