1and1不适用于主页,但不适用于控制器中的工作页面

时间:2015-02-22 19:52:19

标签: .htaccess mod-rewrite

我正在尝试在1和1中发布一个网页,但我遇到了一些问题,我不知道是.htacces还是其他东西。

该页面适用于domain.com/home,但不适用于domain.com

我尝试使用1and1的重定向,但是当我尝试加载页面时说“很多重定向”

然后,这是我的.haccess

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^(/index\.php|/images|/js|/css)
RewriteRule ^(.*)$ /index.php?/$1 [L]

感谢

edit1:错误是这样的:enter image description here

1 个答案:

答案 0 :(得分:0)

试试这个

# 1y1
RewriteBase /
Options -MultiViews
RewriteEngine On
AddHandler x-mapp-php6 .php
RewriteCond %{HTTP_HOST} ^www\.DOMINIO\.com$
RewriteRule ^/?$ "http\:\/\/DOMINIO\.com\/" [R=301,L]
RewriteRule ^(.*)/$ /$1 [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ /index.php [L]