我在正则表达式上非常弱,我需要帮助执行以下操作的mod_rewrite规则:
当然,目录a和b都在同一根目录下。
我设法排名第二,但我不知道如何包含规则1.
答案 0 :(得分:0)
您可以使用以下内容:
RewriteEngine on
#--if url is just the domain name--#
#--rewrite to /a/index.php--#
RewriteRule ^$ /a/index.php [NC,L]
#--if it contains path--#
#--rewrite to /b/index.php?id=path
RewriteRule ^((?!b).+)$ /b/index.php?id=$1 [NC,L]