我想显示不同的URL并执行不同的URL

时间:2014-02-20 18:27:45

标签: .htaccess

我想在下方显示网址 http://example.com/folder1

并执行url是

http://example.com/?test=folder1

1 个答案:

答案 0 :(得分:1)

在.htaccess文件中试试这个

RewriteEngine On
RewriteRule ^([a-z0-9_\-]+)$ index.php?test=$1 [L,NC]