website is running on a web hosting where we don't have access on htaccess file. i want to do URL rewriting for user friendly URL. e.g. Original URL www.domain-name.com/file?q=name
expected URL www.domain-name.com/file/name
|
website is running on a web hosting where we don't have access on htaccess file. i want to do URL rewriting for user friendly URL. e.g. Original URL www.domain-name.com/file?q=name expected URL www.domain-name.com/file/name |
||||
|
|
As other people said, just use links like Else, you could ask your hoster to redirect any URL to /index.php so that you can handle URL rewriting without having Then you can just use a regex match to detect what file to include. Be careful with including the files, use a whitelist so you're sure nobody would be able to load internal files. |
|||
|
|
|
as Alix Axel suggested you can use
then you will use |
|||||||||
|
|
Your best bet will be to have URLs such as this:
You'll to rewrite your PHP code though. |
|||
|
|
|
If you have an Apache server and AcceptPathInfo is enabled, then you can use the URL you wrote. A request of |
|||
|
|
|
You'd need to do something like the following:
Then you'd access http://example.com/script.php?q=name what would include http://example.com/file/name. |
|||||||||||
|