I want make some changes to my .htaccess file. I want make user to access php by typing the filename without extension. For example, http://domain/test.php can be access as http://domain/test
This is a discussion on How to change .htaccess setting in the Shared & Semi-Dedicated forum
I want make some changes to my .htaccess file. I want make user to access php by typing the filename without extension. For example, http://domain/test.php ...
I want make some changes to my .htaccess file. I want make user to access php by typing the filename without extension. For example, http://domain/test.php can be access as http://domain/test
RewriteBase /
RewriteRule ^(.*)$ /$1.php
if i'm right
I tried this one, it's working.![]()
RewriteEngine on
RewriteRule ^([^./]+)/?$ $1.php [L]
Copyright © 2011 JaguarPC.com
Bookmarks