htaccess - 映射动态路径

时间:2017-08-08 08:41:17

标签: .htaccess mod-rewrite

我试图在http://example.com/about.php下显示http://example.com/seller/samsung/about.php的内容,其中三星是动态不存在的文件夹。我尝试了以下代码:

RewriteRule ^seller/([^/]+)/(.*)$ ./$1

当我手动执行此操作时,它会起作用:

RewriteRule ^seller/samsung/(.*)$ ./$1

1 个答案:

答案 0 :(得分:0)

[^/]+不带括号()

RewriteRule ^seller/[^/]+/(.*)$ ./$1