How I can create url like http://www.sitename.com/category (without slash). I know how to create http://www.sitename.com/category/ (with slash)

Recommended Answers

All 2 Replies

I think you can achieve what I think you want to achieve by creating a .htaccess file. Try seaching Google for htaccess tutorials or something like that :).

With a .htaccess file you can rewrite your URI's. For example http://www.example.com/index.php?query=hello could be displayed as http://www.example.com/index/hello.

Use .htaccess file.

<IfModule mod_rewrite.c>
Options +FollowSymLinks
Options +Indexes
RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^([^\.]+)$ $1.php [NC,L,QSA]
</IfModule>

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.