我需要一些帮助
我在Debian 7.1 VPS上安装了LAMP,没有域名,只有IP。
当我尝试通过浏览器访问我的IP时,它说:
The [ive hidden the IP] page isn’t working
[ive hidden the IP] redirected you too many times.
我不确定在我的.htaccess文件中编辑/删除的内容是为了解决这个问题。
这是我的.htaccess文件的样子
RewriteEngine on
RewriteRule ^(\w+)$ index.php?page=$1 [L,NC,QSA]
RewriteRule ^(\w+)+\/$ index.php?page=$1 [L,NC,QSA]
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTPS}s ^on(s)|
RewriteRule ^ http%1://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
order allow,deny
deny from [some random ip address that i've hidden]
allow from all
我已删除www。从上一个RewriteRule行开始,因为我使用的是IP地址而不是域名,我是否正确地执行了此操作?
由于