Apache rewrite url need help

倾然丶 夕夏残阳落幕 提交于 2019-12-12 04:32:45

问题


Hello everyone I need help for apache mode rewrite cause I'm novice and. Actually I don't know how to make this done.

here is mys problem

I have some urls that I want to edit them with apache

1- mywebsite/category.php ---> I want that url to stay like it is mywebsite/category.php?sid=categoryname ---> mywebsite/category/categoryname.html

2- mywebsite/news.php --> No modification mywebsite/news.php?view=1(2,3,4,5....etc id in the database) ---> mywebsite/news/topic header.html topic header is the title of the news that will be called from the database via the id

Well Thanks everyone for you help cause really I don't know how to do this. All what I can do is create a htaccess file ^^.


回答1:


In your .htaccess file put:


RewriteEngine On

RewriteRule ^/category.php?sid=([^&]+) /category/$1.html [L,R]


来源:https://stackoverflow.com/questions/1880960/apache-rewrite-url-need-help

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!