我正在尝试在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:错误是这样的:
答案 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]