dslf46995 2017-08-19 11:11
浏览 51

如何将像?id = 223这样的URL更改为SEO友好URL [重复]

This question already has an answer here:

I want to change this URL:

example.com/movie/?id=50&movie=Iron-Man

into

example.com/movie/50-Iron-Man

I did some research and looks like I need to edit my .htaccess file.

I tried few things, but it does not work.

This is all what is inside my .htaccess file currently.

ErrorDocument 404 http://example.com/error404.php


php_flag display_errors 1

I think it will be better, If I do not write all things that I tried to get it done, according to me, it will just make the question more confusing.

</div>
  • 写回答

1条回答 默认 最新

  • 普通网友 2017-08-19 11:17
    关注

    Use routing option.. For example in codeignitor(php) $route['post/upvote'] = "PostController/upVote";

    评论

报告相同问题?