I am having troubles finding out how to make my url from http://example.com/index.php?page=images to http://example.com/images. None of the htaccess tutorials i read today could make me understand it.
I would give you a big wet kiss if you could lead me / give me a snippet or your awesomeness so i could make this happen!

RewriteRule ^(\w+)$ http://example.com/index.php?page=$1
RewriteRule ^(\w+)$ http://example.com/index.php?page=$1

Thanks for your reply, i can write http://example.com/images now instead of http://example.com/index.php?page=images but the url in the browser bar does not change. Do you have any idea how that could be done?
i currently have;

RewriteEngine on
RewriteRule    ^$						/index.php [L]
RewriteRule ^(\w+)$ http://example.com/index.php?page=$1

If you want the url to change I think you can use the [R] flag.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.