带字符的子页面/

时间:2014-06-19 22:19:50

标签: php html css .htaccess

我需要使用帮助.htaccess添加子页面,然后输入.htaccess

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /profile.php?username=$1&galery=$2

如果我需要转到子页面,我必须放domain/username&galery但我不需要使用这个&字符。相反,我需要使用这个/字符。我应该改变什么才能得到这样的结果  domain/username/galery

1 个答案:

答案 0 :(得分:1)

这样做:

RewriteEngine On

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

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)/([^/]+)/?$ /profile.php?username=$1&galery=$2 [L,QSA]