0

我已经搜索了很长时间,但没有成功,我快到了。但是,我需要创建此规则:

www.webpage.com/index.php?variable=x

www.webpage.com/x and www.webpage.com/x/

到目前为止,我在 .htaccess 中有这段代码:

^([^/]*)\.html$ /index.php?nombre=$1 [L]

它帮助我的是获得我需要的东西,但使用 .html

www.webpage.com/x.html

我需要

www.webpage.com/x

提前致谢!:D

4

1 回答 1

0

假设您正在使用 mod_rewrite,请尝试:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/]+)$ /index.php?nombre=$1 [L]
于 2013-05-09T04:36:06.747 回答