我有3个规则为我的网站,没有任何问题的工作在我的网站的页面,除了索引。我的索引页面名为ecorustic.php,但我希望它在没有extention.Now的情况下显示简单的生态,如果我浏览这些页面,我会得到生态/山脉/喜马拉雅(它丢失了扩展名),但当我返回主页时,它显示ecorustic.php。请帮帮忙
# my .htacces file
RewriteEngine on
RewriteRule ^ecorustic/.php$ index.php #i made it so the server views it as index
RewriteRule ^ecorustic/(.*)/(.*)$ ecorustic.php?categorie=$1&nume=$2
RewriteRule ^ecorustic/(.*)$ ecorustic.php?categorie=$1 [L]发布于 2013-02-15 21:11:22
在点后添加*符号。RewriteRule ^ecorustic/.*php$ index.php
https://stackoverflow.com/questions/14895451
复制相似问题