我想要以下内容:
http://fref.co/anystring
改写为:
http://fref.co/?q=anystring
这是我走了多远:
RewriteEngine On
RewriteRule ^(.+)/?$ index.php?q=$1 [NC,L]
我想要以下内容:
http://fref.co/anystring
改写为:
http://fref.co/?q=anystring
这是我走了多远:
RewriteEngine On
RewriteRule ^(.+)/?$ index.php?q=$1 [NC,L]
这应该满足您的需求:
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]