我一直在尝试将动态生成的网址重写为静态网址。例如,我在实现.htaccess
命令后实现了这个URL:
重写网址:http://www.risenotes.com/top/Love-best-quotes
实际网址为:http://www.risenotes.com/quotes/great-best-quotations.php?topic=Love
我正在使用以下命令:
RewriteEngine On
RewriteRule ^top/([^/]*)-best-quotes$ /quotes/great-best-quotations.php?topic=$1 [L]
我的代码在上面运行得非常好,但我想重定向所有
请求/quotes/great-best-quotations.php?topic=Love
到新重写的网址
/top/Love-best-quotes.
任何人都可以指导我吗???