重写未将主页重定向到路由器php

问题描述 投票:0回答:1

我正在尝试实现路由器,但是仅当我在后面添加一些内容(例如www.url.com/en)时,它才会重定向我

但是当我进入主页时会出现:

。htaccess配置:

    RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !robots\.txt
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ router.php [L]
.htaccess mod-rewrite apache2
1个回答
0
投票

确保已启用apache重写模块。尝试使用此.htaccess

© www.soinside.com 2019 - 2024. All rights reserved.