网站网址重定向到名称/%20 / auth / login

时间:2015-04-01 11:46:33

标签: .htaccess web webpage

我有一个托管在godaddy上的网站。当我输入url thehotkey.in时,url重定向到thehotkey.in/%20/auth/login给我一个空白页面。

当我去:thehotkey.in/auth/login时,它给了我一个扭曲的登录表单。 我点击的每个按钮,例如,如果我点击此登录页面上的注册按钮,它会重定向到thehotkey.in/%20/auth/register,这会给我一个空白页面。

如果我去thehotkey.in/index,它也会给我一个空白页。

存在某种错误重定向但我无法弄清楚如何解决它。

这是my.htaccess以获得更多帮助:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

RewriteRule ^index\.php$ - [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule . /index.php [L]

RewriteRule ^index.php/(.*)$ [L]
</IfModule>

(我没有编写代码,它是一个购买的代码)

任何建议表示赞赏。

1 个答案:

答案 0 :(得分:0)

fx_cpnfig文件中的基本URL在url地址的末尾有一个空格。因此,我们在每个重定向的网址中都是%20。在移除空间后,一切都很顺利。