0

我想要以下内容:

http://fref.co/anystring

改写为:

http://fref.co/?q=anystring

这是我走了多远:

RewriteEngine  On
RewriteRule ^(.+)/?$ index.php?q=$1 [NC,L]
4

1 回答 1

0

这应该满足您的需求:

Options +FollowSymLinks -MultiViews

RewriteEngine On

# Internally redirect http://fref.co/anystring to http://fref.co/?q=anystring
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/?$ /index.php?q=$1 [L]

# Redirect http://fref.co/?q=anystring to http://fref.co/anystring
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s(/index\.php|/)\?q=([^\s]+) [NC]
RewriteRule ^ /%2? [R=302,L]
于 2013-07-30T00:24:16.650 回答