Adiie9
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Problem with .htaccess customization with a pluginplease check this again
https://grocerystorecoupon.org/2/I was using extract.php file to get file contents
RewriteEngine On RewriteRule ^([0-9]+)/(.+) extract.php?l=$2 [NC] RewriteRule ^([0-9]+)/$ extract.php [NC] RewriteRule ^([0-9]+) extract.php [NC]
and that is why
https://grocerystorecoupon.org/2/about was redirecting to
https://grocerystorecoupon.org/aboutI dont want to redirect…
Link must be https://grocerystorecoupon.org/2/aboutnow I have set the .htaccess to
RewriteEngine On RewriteRule ^([0-9]+)/(.+) $2 [NC] RewriteRule ^([0-9]+)/$ index.php [NC] RewriteRule ^([0-9]+) index.php [NC]
and again it is showing page not found
Forum: Networking WordPress
In reply to: Problem with .htaccess customization with a pluginoh sorry about that ??
/2/
/3/
/any_number/
these all should show the content of https://grocerystorecoupon.org/
but the link must be https://grocerystorecoupon.org/2/same goes for https://grocerystorecoupon.org/2/about
https://grocerystorecoupon.org/999/aboutthey should show content of https://grocerystorecoupon.org/about/
I hope I am clearForum: Networking WordPress
In reply to: Problem with .htaccess customization with a pluginfor adeelx.info/wordpress/ i have not enabled multisite support
Forum: Networking WordPress
In reply to: Problem with .htaccess customization with a pluginYes I tried but still no solution
for grocerystorecoupon.org
RewriteEngine On RewriteRule ^([0-9]+)/(.+) $2 [NC] RewriteRule ^([0-9]+)/$ index.php [NC] RewriteRule ^([0-9]+) index.php [NC] <FilesMatch "\\.(js|css|html|htm|php|xml)$"> SetOutputFilter DEFLATE </FilesMatch> Options +FollowSymLinks RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L] RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L] RewriteRule . index.php [L]
grocerystorecoupon.org/2/
grocerystorecoupon.org/3/
shows page not foundand other website https://adeelx.info/wordpress/2/
https://adeelx.info/wordpress/3/They are working fine…