.htaccess rewrite url to make SEO friendly

允我心安 提交于 2019-12-25 02:58:49

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!