我需要制定重写条件:
我想将用户重定向到/Cms/index.php/$1
在 URL 中找到“cms”时,例如:http://example.com/cms/
否则我想重定向到/App/index.php/$1
,我已经做了一些事情,但它给了我 500 错误。
RewriteEngine On
RewriteRule ^cms /Cms/index.php/$1 [L]
RewriteRule ^.*$ /App/index.php/$1 [L]
谢谢
@编辑
我试过了,但它也让我赚了500。
error.log
[Sun Dec 23 19:40:54 2012] [error] [client 127.0.0.1] Request exceeded the limit of 10 internal redirects due to probable configuration error.vUse 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.