Posted June 25, 20231 yr comment_75 Nhiều khi bạn muốn xóa phần mở rộng .php trong URL để URL nhìn đẹp hơn. Vậy thì đây là giải pháp bạn cần. Ví dụ Muốn truy cập https://cùi.vn/dangnhap.php bạn chỉ cần để URL là https://cùi.vn/dangnhap Hướng dẫn Sao chép đoạn sau và dán vào file .htaccess <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^?.]+)$ $1.php RewriteRule ^([^?.]+)\?(.*)$ $1.php?$2 </IfModule>
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.