问题
I have posted somewhat related to this topic here, but I seem not get the right answer. So could anyone help me to change the address like this:
example.com/index.php?page=something => example.com/something
and example.com/index.php => example.com
in the .htaccess file?
Here is my website link www.panhareach.com
回答1:
Try this:
RewriteEngine on
RewriteCond %{QUERY_STRING} ^$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ([A-Za-z0-9\-]+)/?$ /index.php?page=$1 [L]
来源:https://stackoverflow.com/questions/11589519/htaccess-rewrite-url-to-make-seo-friendly