htaccess重写更改网址,但我不想

时间:2014-07-20 12:11:38

标签: apache .htaccess mod-rewrite

我在本地apache服务器上使用此重写规则

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^ellada\/(.*) public/index.php/$1 [L,QSA,NC]
RewriteCond %{REQUEST_FILENAME} !-f
</IfModule>

public / index.php是解析器,我想要显示给浏览的路径在ellada文件夹下

当我点击链接href:

http://sample.com/ellada/folder1/folder2 

它在浏览器网址显示

http://sample.com/public/folder1/folder2

我不想要的,我想要ellada / folder1 / folder2

有什么办法可以解决吗? 谢谢

0 个答案:

没有答案