我是完全的新手mod_rewrite
,我一直在浏览一些网站,阅读如何处理这个问题,我所能找到的只是当 get 变量是数字而与字符串无关时,结果却超出了我的想象。
我想做的是重写display.php?name=blahblah123
为display/blahblah123
连同答案,我希望有一些网站可以让我对mod_rewrite
自己有所了解。
谢谢
编辑:
随着更多的搜索,我想出了这个
RewriteEngine On
RewriteBase /
RewriteRule ^display/([a-z]+)$ display.php?name=$1 [L]
上面的代码有效,但由于某种原因,我得到的页面没有 CSS。我看到的 CSS 显示了 Hostgator 的 404 页面 CSS。但是 HTML 看起来不错,内容和其他一切也不错。任何的想法?