子文件夹索引的重写规则

时间:2014-06-16 14:54:13

标签: regex apache .htaccess security mod-rewrite

我有这个网址

http://myurl.com/shiftturn/index.php?m=value

我希望:

http://myurl.com/shiftturn/value

这是我的.htaccess

RewriteEngine On
RewriteRule /shiftturn/([^/]*)$ /index.php?m=$1 [L]

但不起作用。 如何使用正确的htaccess表达式来获取我需要的url?

1 个答案:

答案 0 :(得分:1)

将此规则放在/shiftturn/.htaccess

RewriteEngine On
RewriteBase /shiftturn/

RewriteCond %{THE_REQUEST} /index\.php\?m=([^\s&]+) [NC]
RewriteRule ^ %1? [R=302,L,NE]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/?$ index.php?m=$1 [L,QSA]