Advertisement
satish-sahu

htacess

Apr 27th, 2023 (edited)
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1.  
  2. # BEGIN WordPress
  3. # The directives (lines) between "BEGIN WordPress" and "END WordPress" are
  4. # dynamically generated, and should only be modified via WordPress filters.
  5. # Any changes to the directives between these markers will be overwritten.
  6. <IfModule mod_rewrite.c>
  7. RewriteEngine On
  8. RewriteRule ^index\.php$ - [L]
  9. RewriteCond %{REQUEST_FILENAME} !-f
  10. RewriteCond %{REQUEST_FILENAME} !-d
  11. RewriteCond %{REQUEST_URI} !^/(video-embed) [NC]
  12. RewriteRule . /index.php [L]
  13. RewriteRule ^video-embed/(.*)$ video-embed/index.php?id=$1 [L,QSA]
  14. </IfModule>
  15.  
  16. # END WordPress
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement