Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
376 views
in Technique[技术] by (71.8m points)

url rewriting - Apache rewrite url need help

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 ^^.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

In your .htaccess file put:


RewriteEngine On

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...