我有一个项目,目录结构是
|project-root
|--.htacess
|--directory_1
|----.htaccess
|--directory_2
|----.htaccess
根上的 .htaccess
包含以下内容
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /project-root/
RewriteRule ^(.*)$ directory_1/$1 [L]
</IfModule>
和.htaccess
中的direcotry_1
包含以下内容
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule (.*) http://www.yahoo.com/$1 [R=301,L]
RewriteBase /project_root/
RewriteRule ^(.*)$ directory_2/$1 [L]
</IfModule>
当我点击URL http://myproejct.local
时,出现500错误,但日志中没有任何内容。
RewriteRule (.*) http://www.yahoo.com/$1 [R=301,L]
只是为了验证.htaccess是否有效。
TIA