0

In my index.php I have a list of properties. When I click on it, it directs me to property_detail.php but with extra details on the URL making it very long and untidy. How to make it short?

enter image description here

CinCout
  • 9,044
  • 11
  • 51
  • 63
AB pacino
  • 63
  • 9

1 Answers1

0

Set rewrite URL rule in .htaccess in the root folder.

RewriteEngine On
RewriteCond $1 !^(index\.php|assets|images|js|css|upload|favicon.png)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
Nathan Tuggy
  • 2,230
  • 27
  • 29
  • 38