我正在努力制作这个网址:
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
的文件的引用。我在任何地方的系统上都看不到该文件。这是我可以创造的东西吗?
答案 0 :(得分:1)
您可以在/ee/.htaccess
:
RewriteEngine on
RewriteBase /ee/
RewriteRule ^profiles/?$ profiles/index.html [L]