Closed. This question is off-topic. It is not currently accepting answers. Learn more。
想改进这个问题吗?Update the question所以堆栈溢出的值小于aa>。
6年前关闭。
我知道之前已经有人回答过这个问题,但是.htaccess文件在设计上非常个人化,我发现很难将其他文章中找到的修复应用到我的.htaccess文件中。在webdir的根目录中访问.htaccess并导致此错误:
如果有人能指出我.htaccess中的缺陷,我将不胜感激!谢谢您!
在此之前:
想改进这个问题吗?Update the question所以堆栈溢出的值小于aa>。
6年前关闭。
我知道之前已经有人回答过这个问题,但是.htaccess文件在设计上非常个人化,我发现很难将其他文章中找到的修复应用到我的.htaccess文件中。在webdir的根目录中访问.htaccess并导致此错误:
"[error] [client 1.1.1.1] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace".
如果有人能指出我.htaccess中的缺陷,我将不胜感激!谢谢您!
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !(.*)\. (gif|jpeg|jpg|png|css|js|pdf|doc|xml|ico|html|php|json|swf|mp3|ogg|wav)$
RewriteCond %{REQUEST_URI} !(service)
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ $1/ [L,R=301]
RewriteRule ^[^/.]*/(.*) app/$1 [L]
最佳答案
不知道你想做什么,但看起来你需要一个:
RewriteCond %{REQUEST_URI} !app/
在此之前:
RewriteRule ^[^/.]*/(.*) app/$1 [L]
关于linux - .htaccess:请求超出了10个内部重定向的限制,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17055024/
10-16 01:59