Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
195 views
in Q2A Core by

 

i  have loaded htaccess file also still it say problem with file in URL structure for pages on your site

what could i do now

my webhost apache server is2.2.13 (unix)

i have install in root of my website not in any sub folder 

content of my .htaccess is 

 

DirectoryIndex index.php
RewriteEngine On
#RewriteBase /your-sub-directory
RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
RewriteRule . %1/%2 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php?qa-rewrite=$0&%{QUERY_STRING} [L]

Please log in or register to answer this question.

...