RewriteCond %{HTTP_HOST} ^seedscrew\.org\.crew$ [OR]
RewriteCond %{HTTP_HOST} ^www\.seedscrew\.org\.crew$
RewriteRule ^crew/([A-Za-z0-9-]+)/ "http\:\/\/www\.seedscrew\.org\crew\/index\.php\?mode=login&act=home" [R=301,L]
我已写入.htaccess文件。 我想从hostpath / index.php?mode = login& act = home重定向到hostpath / username
答案 0 :(得分:1)
您只需要此规则DOCUMENT_ROOT/.htaccess
文件:
RewriteEngine On
RewriteRule ^crew/([A-Za-z0-9-]+)/?$ /crew/?mode=login&act=home [QSA,L]
或者DOCUMENT_ROOT/crew/.htaccess
文件中的此规则:
RewriteEngine On
RewriteBase /crew/
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([A-Za-z0-9-]+)/?$ ?mode=login&act=home [QSA,L]
答案 1 :(得分:0)
RewriteRule ^crew/([A-Za-z0-9-]+)/?$ http://www.seedscrew.org/crew/index.php?mode=login&act=home [R=301,L] [R=301,L]
记住[R = 301,L]表示您将请求重定向到指定的URL。 如果它在相同的上下文中,则使用如下。 [船员是这里的背景]。
RewriteRule ^crew/([A-Za-z0-9-]+)/?$ /crew/index.php?mode=login&act=home [L,PT]