0

I want to rewrite my links but with multi styles here is i want i want to be look like

Info cms is my Rewrite Base

Cats style http://www.site.com/catname

Post Style http://www.site.com/anycatname/posttitle

Pages Style http://www.site.com/page/page+title+here

My Pages is

cats style => cats.php?name=catname

posts style => posts.php?title=posttitle

page style => page.php?name=catname

Note

As I tried to make url rewrite as in posts style css and js files had many problem too

1
  • What do you have in your htaccess file so far? Commented Aug 5, 2012 at 15:24

1 Answer 1

1

See below url

http://corz.org/serv/tricks/htaccess2.php

or try below

Options +FollowSymlinks
RewriteEngine on
RewriteRule ^files/([^/]+)/([^/]+).zip /download.php?section=$1&file=$2 [NC]

would allow you to present this link as..

mysite/files/games/hoopy.zip

and in the background have that transparently translated, server-side, to..

mysite/download.php?section=games&file=hoopy
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.