简单的问题:
domain.com 应该导致 index.php
和 domain.com/lala (或任何其他词)应该导致 products.php?name=lala
有人可以给我重写规则吗?
谢谢
简单的问题:
domain.com 应该导致 index.php
和 domain.com/lala (或任何其他词)应该导致 products.php?name=lala
有人可以给我重写规则吗?
谢谢
假设您的.htaccess
文件位于 Web 根/
目录中
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d # not a dir
RewriteCond %{REQUEST_FILENAME} !-f # not a file
RewriteRule ^(.*)$ products.php?name=$1 [R=301,L]
RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^ index.php [R=301,L]