【发布时间】:2013-10-17 18:01:10
【问题描述】:
我正在使用 Osclass 3.2.1,但是当我访问我的网站时,它会将我带到此页面 http://housetostay.co.za/user/register 但它应该带我去这个 http://housetostay.co.za 。我一直在尝试修复它并在 Google 上寻求答案,但我得到的一切都对我不起作用。请任何帮助将不胜感激 这是我的 .htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
Options -MultiViews
</IfModule>
【问题讨论】: