Advertisement
noor017

htaccess

Dec 4th, 2016
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. Options +FollowSymLinks -MultiViews
  2. RewriteEngine On
  3.  
  4. RewriteBase /
  5.  
  6.  
  7. RewriteRule products/p/(.*)\.php$ products.php?p=$1  [L]
  8. RewriteRule products.php/p/$ /products/ [L,R=301]
  9.  
  10.  
  11. ## To remove .php file extension start --- its working
  12. RewriteCond %{THE_REQUEST} ^(GET|HEAD)\s([^.]+)\.php [NC]
  13. RewriteRule ^ %2 [R,NC]
  14. RewriteCond %{REQUEST_FILENAME}.php -f
  15. RewriteRule ^ %{REQUEST_URI}.php
  16. ## To remove .php file extension end --- its working
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement