带有问号的Apache mod_rewrite

时间:2014-07-28 08:59:56

标签: php apache .htaccess mod-rewrite

我有一个基于PHP的网络应用程序,我正在尝试将Apache的mod_rewrite应用到。

原始网址的格式为:

http://webseite.de/search/What%3F.html

我想把它们变成:

http://webseite.de/index.php?mod=search&mod2=What?

此网址已经有效:

http://webseite.de/search/What.html

我的.htaccess文件:

RewriteEngine on 
Options +FollowSymlinks
RewriteRule ^([^/]+).html$ index.php?mod=$1
RewriteRule ^(.*)/(.*).html$ index.php?mod=$1&mod2=$2 [NE,B]

0 个答案:

没有答案
相关问题