.htaccess重写网址,使SEO友好

时间:2012-07-21 04:41:53

标签: .htaccess url-rewriting

我发布了与此主题[{3}}有些相关的内容,但我似乎得不到正确答案。所以任何人都可以帮我改变这样的地址:

example.com/index.php?page=something => example.com/something

and example.com/index.php => example.com
<。>在.htaccess文件中?

这是我的网站链接www.panhareach.com

1 个答案:

答案 0 :(得分:1)

试试这个:

RewriteEngine on
RewriteCond %{QUERY_STRING} ^$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ([A-Za-z0-9\-]+)/?$ /index.php?page=$1 [L]