I am new in wordpress . i have install the wordpress 3.1 in server using FTP. i am facing permalink issue in wordpress 3.1 when i changed my permalinks to custom structure so it is not showing me my domain URL in browser.
Then i did a lot of searching for permalink issue so i found that i have to create a .htaccess file and put it into
root folder and added following code in it.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
and then i changed my permalink to my custom structure.
/%category%/%post%/
but it is not showing me my base URL.
Example :
https://www.baseurl.com
It is not working but when i used following URL directly like
https://www.baseurl.com/category/post
so it is working and if i click on any internal link in it so it is working fine but base URL is not showing me .
I already have spend a lot of time to solve this issue .
Basically i am java programmer so i dont have any idea about PHP so how could i solve this issue.
PLEASE PLEASE PLEASE Help me to solve this problem.