OmniPotens
OmniPotens

Reputation: 1125

PHP URL RE-WRITE

I have a URL http://www.domain.com/products.php?cat=women-clothing-tops and want to re-write it to http://www.domain.com/women-clothing-tops, how do I go about this? Is it just a URL re-write or there are other things I need to do to get it re-written?

Upvotes: 0

Views: 141

Answers (2)

Jon Lin
Jon Lin

Reputation: 143946

Try adding these rules to the htaccess file in your document root:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-z0-9-]+)$ /products.php?cat=$1 [L]

Upvotes: 1

iiiqi
iiiqi

Reputation: 1

if apache server

.htaccess

update

Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . products.php

Upvotes: 0

Related Questions