使用.htaccess的URL前缀

时间:2018-06-01 09:25:39

标签: apache .htaccess

我想使用htaccess文件为传入的URL添加前缀。例如,网址可能是http://localhost/george_shop.html,我希望htaccess像http://localhost/route/george_shop.html

一样加上前缀

这是我现在的htaccess:

<IfModule mod_rewrite.c>
    RewriteEngine On

    RewriteCond %{REQUEST_FILENAME} -s [OR]
    RewriteCond %{REQUEST_FILENAME} -l [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^.*$ - [NC,L]

    RewriteCond %{REQUEST_URI}::$1 ^(/.+)(.+)::\2$
    RewriteRule ^(.*) - [E=BASE:%1]
    RewriteRule ^(.*)$ %{ENV:BASE}index.php [NC,L]
</IfModule>

更新 如果有帮助,这就是Slim3 htaccess

1 个答案:

答案 0 :(得分:1)

我建议你使用纤细的正则表达式,你的路线可以通过动态做这样的事情:

$app->get('/{route:.*(?:html)$}', function($req, $res, $args) {});

希望有所帮助