0

我的网站有 3 条规则,这些规则在我的网站页面上运行没有任何问题,但索引除外。我的索引页面称为 ecorustic.php 但我希望它仅显示 ecorustic 而没有扩展名。现在如果我浏览这些页面我会得到 ecorustic/mountain/himalaya (它丢失了扩展名)但是当我返回主页时,它显示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]
4

1 回答 1

0

在点后添加 * 符号。 RewriteRule ^ecorustic/.*php$ index.php

于 2013-02-15T13:11:22.193 回答