如何在htaccess中重写index.php?main_page = xxx?
RewriteEngine On
RewriteRule ...
/* ------- for example ------- */
www.laji.com/xxx => www.laji.com/index.php?main_page=xxx
www.laji.com/xxx/ => www.laji.com/index.php?main_page=xxx
xxx可以是[a-zA-Z \ d]和“ - ”,不能是“xx.php”
我不擅长htaccess。有些人帮忙吗?
非常感谢你!
答案 0 :(得分:2)
在 www.laji.com 的文档根目录中的htaccess文件中,添加:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([A-Z0-9-]+)/?$ /index.php?main_page=$1 [L,NC]