如何使用apache设置更改URL?

时间:2014-06-25 19:55:50

标签: apache

我想要这个链接:

http://example.com/wiki/index.php?title=Page_title

成为了这个链接:

http://example.com/wiki/Page_title

但我不知道怎么办? 我应该把htaccess文件放在哪里?

1 个答案:

答案 0 :(得分:0)

RewriteEngine On
RewriteRule ^/wiki/(.+)  /wiki/index.php?title=$1  [R,L]

这应该进入你的网站root htaccess

阅读此Redirecting and Remapping with mod_rewrite