Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
666 views
in Q2A Core by
how to rewrite  use httpd.ini no .htaccess?

SORRY i don't know how to make rewrite by httpd.ini thankyou for your kindly help!

 

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

Please log in or register to answer this question.

...