Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
353 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 Answer

0 votes
by (71.8m points)

In your .htaccess file put:


RewriteEngine On

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...