我正在将我的网站链接更改为对 SEO 友好的 url,我在 php 文件中做了所有事情,并将 url 更改如下:
http://mywebsiet.com/news-details.php?id=2012/6/21/newstitle.html
我如何重定向到:
http://mywebsiet.com/2012/6/21/newstitle.html
我从 www.generateit.net/mod-rewrite/ 尝试了这个生成工具
并使用提供的代码创建了 .htaccess:
RewriteEngine On
RewriteRule ^([^_]*)$ /news-details.php?id=$1 [L]
即便如此,什么都没有改变....有什么想法吗?