你好我正在开发一个5-6页的网站,如main.php(主页),event.php(活动的登陆页面),article.php(另一个新闻登陆页面等)等等...... < / p>
我想知道如何将“http://www.domain.com/event.php?eid=145”等网址重写为“http://www.domain.com/event”之类的内容/标题-的事件“
我已经阅读了几篇关于.htaccess的文章,但没有运气但目前我正在搞乱这个但是这不是我想要的
Options +FollowSymlinks
RewriteEngine on
rewriterule ^event.php(.*)$ http://evented.localhost/event/$1 [r=301,nc]
如果你知道.htaccess的任何体面的url别名教程,将非常感谢任何帮助。
日Thnx。
编辑:
这似乎适用于event.php页面,它将链接转换为此http://domain.com/event/145(根据上面的示例)
RewriteEngine on
#EVENT REWRITE
RewriteRule ^event/([^/\.]+)/?$ /event.php?eid=$1 [L]
RewriteRule ^event/(.*) /$1 [L]
我怎么能用它的标题替换事件id?
答案 0 :(得分:0)
您必须使用other.data存储干净的标题,然后使用干净的网址查找文章。