It's possible to rewrite submitticket.php being submit-ticket in .htaccess
I want to know how to change current URL
http://domain.com/submitticket.php
To 开发者_如何学编程be
http://domain.com/submit-ticket/
Let me know
RewriteRule ^submitticket/?$ /submit-ticket/
If you have no other things in you URL
RewriteRule ^submitticket/(.*)$ /submit-ticket/$1
If you have following information
精彩评论