0

我的问题是我想用 htaccess 重命名这 2 个 url,但我不知道

想转换

mydomain.com/info.php?act=statistics
mydomain.com/info.php?act=about_us

进入

mydomain.com/statistics
mydomain.com/about_us

我将非常感激,因为我对 htaccess 一无所知。

4

1 回答 1

4
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /info.php?act=$1 [L]

这会将 /whatever 传递给 /info.php?act=whatever !-f 和!-d RewriteCond 首先检查以确保文件不存在。

于 2012-09-24T22:25:13.620 回答