Jump to content

Xoá Phần Mở Rộng Đuôi .PHP

Featured Replies

Posted
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ụ

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.

Guest
Reply to this topic...