Thanks, but I did everything you said, but my problem still remains.
It is, when i click on story in my script (view) the URL is for example:
[
myname.lt...]
I don't know what to do.
Here is my full .htaccess after editing.
<IfModule mod_rewrite.c>
# Enable mod_rewrite, disable multiviews
# For security reasons, Option followsymlinks cannot be overridden.
#Options -multiviews
Options -multiviews FollowSymLinks
# Turn on the rewrite engine
# Rewrite URL-paths not ending with a filetype (".") or trailing slash (in any {sub}directory) to <URL-path>.php
RewriteEngine on
RewriteRule ^(([^/]+/)*([^./]+))$ $1.php [L]
RewriteRule ^signup$ /signup.php [L]
RewriteRule ^category/([^/]+)/(.*) /category.php?cat=$1&name=$2 [L]
RewriteRule ^view/([^/]+)/(.*) /view.php?cat=$1&name=$2 [L]
RewriteRule ^members/([^/]+)/(.*) /memberprofile.php?pid=$1&name=$2 [L]
RewriteRule ^top$ /top.php [L]
RewriteRule ^flop$ /flop.php [L]
RewriteRule ^random$ /random.php [L]
RewriteRule ^password$ /password.php [L]
RewriteRule ^confirmemail/(.*) /confirmemail.php?code=$1 [L]
RewriteRule ^resetpassword/(.*) /resetpassword.php?code=$1 [L]
RewriteRule ^editaccount$ /editaccount.php [L]
RewriteRule ^changeemail$ /changeemail.php [L]
RewriteRule ^changepass$ /changepass.php [L]
RewriteRule ^resendconfirmation/(.*) /resendconfirmation.php?userid=$1 [L]
RewriteRule ^favorites$ /favorites.php [L]
RewriteRule ^members/([^/]+)/(.*) /memberprofile.php?pid=$1&name=$2 [L]
RewriteRule ^advanced_search$ /advanced_search.php [L]
RewriteRule ^moderate$ /moderate.php [L]
RewriteRule ^termsofuse$ /termsofuse.php [L]
RewriteRule ^privacypolicy$ /privacypolicy.php [L]
RewriteRule ^aboutus$ /aboutus.php [L]
RewriteRule ^advertising$ /advertising.php [L]
RewriteRule ^contactus$ /contactus.php [L]
RewriteRule ^mailbox$ /mailbox.php [L]
RewriteRule ^log_out$ /log_out.php [L]
RewriteRule ^man$ /man.php [L]
RewriteRule ^woman$ /woman.php [L]
</IfModule>
This line "RewriteRule ^(([^/]+/)*([^./]+))$ $1.php [L]" I can't moving, because after that all links not working.
Thank you, for your support.