如何在文件夹中的文件上使用mod_rewrite?

时间:2014-12-30 02:28:32

标签: .htaccess mod-rewrite

我正在努力制作这个网址:

  

http://jawapa.bl.ee/ee/profiles/index.html?/jawapa

看起来像这样:

  

http://jawapa.bl.ee/ee/profiles/?/jawapa

我尝试了几种不同的选项,但没有一种可行。有人建议调查mod_rewrite。我做了并想出了以下内容:

RewriteEngine on RewriteRule .* /ee/profiles/index.html

我根本不熟悉mod_rewrite,所以我对于为什么这不起作用一无所知。在进一步研究之后,我不断看到对名为httpd.conf的文件的引用。我在任何地方的系统上都看不到该文件。这是我可以创造的东西吗?

1 个答案:

答案 0 :(得分:1)

您可以在/ee/.htaccess

中使用此规则
RewriteEngine on
RewriteBase /ee/

RewriteRule ^profiles/?$ profiles/index.html [L]