我需要一个站点上的每一个页面请求-- 200,404,等等--在站点上的固定页面上登陆,在本例中是index_new.php
。
我尝试过其他的,所以和ServerFault答案,我继续得到一个无休止的重定向循环。
这里是我在httpd.conf:中的代码
<VirtualHost *:80>
ServerName my.example.com
ServerAlias *.my.example.com
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/index_new.php
RewriteRule ^(.*)$ /index_new.php [R=301,L]
</VirtualHost>
备注:
.htaccess
文件为空index_new.php
“页面是静态的,没有page (”location:“)内部重定向等等。发布于 2016-09-28 06:28:02
负的前瞻性应该可以做到,并且可以很容易地用RedirectMatch来执行一行,而不是使用mod_rewrite:
RedirectMatch permanent ^/(?!index_new.php).* /index_new.php
清除浏览器缓存和/或尝试使用curl -I http://my.example.com/wahtever
以确保其正常工作
为了保持清醒,请在虚拟主机和目录条目中指定文档根以允许访问(根据版本的不同,要求所有授予/允许访问),并且因为您没有使用.htaccess (顺便说一下,祝贺您!您是少数几个从一开始就在做事情的人之一),为了安全起见,请将DocumentRoot目录设置为"AllowOverride none“。
https://stackoverflow.com/questions/37682902
复制相似问题