WordPress URL Link Issue
-
This post is deleted! -
Hi Kashif,
Standard .htaccess file set by WP containing redirecting rules. In your site you have "friendly ulr's" chosen. Standard WP url is containing more information for Frontapage eg. index.php, for posts - post date etc... and rules in .htaccess file are responsible for redirect all of them to friendly url.
There is no reason to be worry about it

Marek
Example of WP .htaccess file:
BEGIN WordPress
RewriteEngine OnRewriteBase /RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
END WordPress