使用htaccess重写网址无法正常工作

时间:2019-02-04 16:21:25

标签: php apache .htaccess

我正在尝试使用htacces,我的URL https://example.com/web/xx和y将web改写为其他单词示例https://example.com/test/xx RewriteRule ^ web(。*)test $ 1,但不起作用,有什么主意吗? 这是我的.htaccess

 RewriteEngine on

 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteCond %{REQUEST_FILENAME} !-1

 RewriteRule ^web(.*) test$1

 RewriteRule . index.php

0 个答案:

没有答案