Aadi
Aadi

Reputation: 7109

Htaccess Problem in PHP

How can I rewrite

www.example.com/test.php?search=demo

to

www.example.com/test/?search=demo

using htaccess

Upvotes: 0

Views: 35

Answers (2)

thedom
thedom

Reputation: 2518

Put that into your .htaccess:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([A-Za-z0-9]+)/?$ $1.php  

Upvotes: 1

Shakti Singh
Shakti Singh

Reputation: 86386

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php

Upvotes: 0

Related Questions